mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-08-11 06:51:32 +08:00
Fix race condition of selectedStatusPagesOptions
This commit is contained in:
@@ -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() {
|
||||
|
Reference in New Issue
Block a user