mirror of https://github.com/apache/cloudstack.git
Fix login issue after logout from Configuration page (#7197)
This commit is contained in:
parent
e61ab3d6e9
commit
90c92f2710
|
|
@ -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 () {
|
||||
|
|
|
|||
Loading…
Reference in New Issue