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 2357bab4fc - Show all commits

View File

@ -181,12 +181,9 @@ export default {
onRowClick(event, row) {
const tag = row.getData();
this.onTagClick(tag, row.getIndex());
},
const rowIndex = row.getIndex();
onTagClick(tag, rowIndex) {
this.tabulator.deselectRow();
this.tabulator.selectRow(rowIndex);
this.selectedTag = tag;