mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-27 16:54:04 +00:00
Fix race condition of selectedStatusPagesOptions
This commit is contained in:
parent
7853c2cc38
commit
617ba49e6c
1 changed files with 9 additions and 8 deletions
|
@ -138,13 +138,21 @@ export default {
|
||||||
affectedMonitorsOptions: [],
|
affectedMonitorsOptions: [],
|
||||||
showOnAllPages: false,
|
showOnAllPages: false,
|
||||||
selectedStatusPages: [],
|
selectedStatusPages: [],
|
||||||
selectedStatusPagesOptions: [],
|
|
||||||
dark: (this.$root.theme === "dark"),
|
dark: (this.$root.theme === "dark"),
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
computed: {
|
computed: {
|
||||||
|
|
||||||
|
selectedStatusPagesOptions() {
|
||||||
|
return Object.values(this.$root.statusPageList).map(statusPage => {
|
||||||
|
return {
|
||||||
|
id: statusPage.id,
|
||||||
|
name: statusPage.title
|
||||||
|
};
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
pageName() {
|
pageName() {
|
||||||
return this.$t((this.isAdd) ? "Schedule Maintenance" : "Edit Maintenance");
|
return this.$t((this.isAdd) ? "Schedule Maintenance" : "Edit Maintenance");
|
||||||
},
|
},
|
||||||
|
@ -177,13 +185,6 @@ export default {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
Object.values(this.$root.statusPageList).map(statusPage => {
|
|
||||||
this.selectedStatusPagesOptions.push({
|
|
||||||
id: statusPage.id,
|
|
||||||
name: statusPage.title
|
|
||||||
});
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
init() {
|
init() {
|
||||||
|
|
Loading…
Reference in a new issue