mirror of https://github.com/apache/cloudstack.git
UI: Fixes issue during logout as user / domain admin (#5476)
This commit is contained in:
parent
0facba9372
commit
ca870dfc73
|
|
@ -137,7 +137,7 @@ export default {
|
|||
this.$store.watch(
|
||||
(state, getters) => getters.project,
|
||||
(newValue, oldValue) => {
|
||||
if (newValue && newValue !== oldValue) {
|
||||
if (newValue && (!oldValue || newValue.id !== oldValue.id)) {
|
||||
this.fetchData()
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue