Fix race condition of `selectedStatusPagesOptions`
This commit is contained in:
parent
7853c2cc38
commit
617ba49e6c
|
@ -138,13 +138,21 @@ export default {
|
|||
affectedMonitorsOptions: [],
|
||||
showOnAllPages: false,
|
||||
selectedStatusPages: [],
|
||||
selectedStatusPagesOptions: [],
|
||||
dark: (this.$root.theme === "dark"),
|
||||
};
|
||||
},
|
||||
|
||||
computed: {
|
||||
|
||||
selectedStatusPagesOptions() {
|
||||
return Object.values(this.$root.statusPageList).map(statusPage => {
|
||||
return {
|
||||
id: statusPage.id,
|
||||
name: statusPage.title
|
||||
};
|
||||
});
|
||||
},
|
||||
|
||||
pageName() {
|
||||
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: {
|
||||
init() {
|
||||
|
|
Loading…
Reference in New Issue