Fix error on creating new tags

This commit is contained in:
Cohee 2024-05-18 17:55:22 +03:00
parent 1eae9bd18b
commit c3d6e10795
1 changed files with 1 additions and 1 deletions

View File

@ -707,7 +707,7 @@ function createNewTag(tagName) {
create_date: Date.now(),
};
tags.push(tag);
console.debug('Created new tag', tag.name, 'with id', id);
console.debug('Created new tag', tag.name, 'with id', tag.id);
return tag;
}