We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5611be commit b638923Copy full SHA for b638923
ui/src/views/AutogenView.vue
@@ -313,15 +313,17 @@ export default {
313
},
314
methods: {
315
fetchData () {
316
- this.routeName = this.$route.name
+ if (this.routeName !== this.$route.name) {
317
+ this.routeName = this.$route.name
318
+ this.items = []
319
+ }
320
if (!this.routeName) {
321
this.routeName = this.$route.matched[this.$route.matched.length - 1].parent.name
322
}
323
this.apiName = ''
324
this.actions = []
325
this.columns = []
326
this.columnKeys = []
- this.items = []
327
this.treeData = []
328
this.treeSelected = {}
329
var params = { listall: true }
0 commit comments