Web Interface for Tags #104244

Merged
Sybren A. Stüvel merged 30 commits from Evelinealy/flamenco:tag-interface into main 2023-09-04 13:06:10 +02:00
Showing only changes of commit 94e1ab4604 - Show all commits

View File

@ -163,15 +163,10 @@ export default {
api api
.deleteWorkerTag(this.selectedTag.id) .deleteWorkerTag(this.selectedTag.id)
.then(() => { .then(() => {
const index = this.tags.findIndex(
(tag) => tag.id === this.selectedTag.id
);
if (index !== -1) {
this.tags.splice(index, 1);
}
this.selectedTag = null; this.selectedTag = null;
this.tabulator.setData(this.tags); this.tabulator.setData(this.tags);

isSelected is not used, so it can be removed. Also I don't see it working, given that it uses an undefined variable tag.

`isSelected` is not used, so it can be removed. Also I don't see it working, given that it uses an undefined variable `tag`.
this.fetchTags();
}) })
.catch((error) => { .catch((error) => {
const errorMsg = JSON.stringify(error); const errorMsg = JSON.stringify(error);