Fix login issue after logout from Configuration page (#7197)

This commit is contained in:
Harikrishna 2023-02-13 13:30:10 +05:30 committed by GitHub
parent e61ab3d6e9
commit 90c92f2710
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 1 deletions

View File

@ -156,7 +156,15 @@ export default {
this.page = parseInt(this.$route.query.page) || 1
this.pagesize = parseInt(this.$route.query.pagesize) || this.pagesize
this.filter = this.$route.query.filter || ''
this.fetchConfigurationData()
},
resource: {
deep: true,
handler (newItem) {
if (!newItem || !newItem.id) {
return
}
this.fetchConfigurationData()
}
}
},
created () {