Fix: Tag Interface Delete Button #104256
@ -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);
|
||||||
dr.sybren marked this conversation as resolved
Outdated
|
|||||||
|
|
||||||
|
this.fetchTags();
|
||||||
})
|
})
|
||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
const errorMsg = JSON.stringify(error);
|
const errorMsg = JSON.stringify(error);
|
||||||
|
Loading…
Reference in New Issue
Block a user
Not sure if a fixed width is going to work well here, especially when the window gets resized.