Fix: Tag Interface Delete Button #104256

Manually merged
Sybren A. Stüvel merged 39 commits from Evelinealy/flamenco:tag-interface into main 2023-11-02 16:13:14 +01:00
Showing only changes of commit 7fc7f5ca0c - Show all commits

View File

@ -82,8 +82,8 @@ export default {
],
layout: "fitData",
layoutColumnsOnNewData: true,
height: "525px", // Must be set in order for the virtual DOM to function correctly.
selectable: true, // The active worker is tracked by click events, not row selection.
height: "525px",
selectable: true,
};
this.tabulator = new Tabulator("#tag-table-container", tag_options);
@ -124,7 +124,7 @@ export default {
.createWorkerTag(newTag)
.then(() => {
this.fetchTags(); // Refresh table data
//TODO: Clear the tab as well
this.newTagName = "";
})
.catch((error) => {
const errorMsg = JSON.stringify(error);