Merge pull request #4077 from jumpserver/pr@v4@fix_tags

fixed: Fixed an issue where clicking the Delete flag
This commit is contained in:
ZhaoJiSen
2024-06-20 14:57:59 +08:00
committed by GitHub
2 changed files with 6 additions and 4 deletions

View File

@@ -321,6 +321,8 @@ export default {
this.filterKey = ''
this.filterValue = ''
this.valueLabel = ''
this.$refs.SearchInput.blur()
},
handleTagClick(v, k) {
let unableChange = false

View File

@@ -14,13 +14,13 @@ export default {
Page, GenericListTable
},
activated() {
setTimeout(() => {
this.reloadTable()
}, 300)
this.reloadTable()
},
methods: {
reloadTable() {
this.$refs.ListTable.reloadTable()
setTimeout(() => {
this.$refs.ListTable.reloadTable()
}, 300)
}
}
}