Merge pull request #4101 from jumpserver/pr@dev@fix_table_reload

fixed: Fixed an issue where tables could not be refreshed after creation
This commit is contained in:
ZhaoJiSen
2024-06-24 19:31:33 +08:00
committed by GitHub
2 changed files with 1 additions and 5 deletions

View File

@@ -201,7 +201,7 @@ export default {
this.$log.debug('Reload the table get latest data: pre ', preURL, ' current: ', location.href) this.$log.debug('Reload the table get latest data: pre ', preURL, ' current: ', location.href)
setTimeout(() => { setTimeout(() => {
this.reloadTable() this.reloadTable()
}, 300) }, 500)
}, },
methods: { methods: {
handleSelectionChange(val) { handleSelectionChange(val) {

View File

@@ -122,7 +122,3 @@ export default {
} }
} }
</script> </script>
<style>
</style>