Browse Source

[status page] also apply the title to <title>

pull/124/head
LouisLam 3 years ago
parent
commit
0834770509
  1. 6
      src/pages/StatusPage.vue

6
src/pages/StatusPage.vue

@ -358,6 +358,10 @@ export default {
"config.statusPageTheme"() {
this.$root.statusPageTheme = this.config.statusPageTheme;
this.loadedTheme = true;
},
"config.title"(title) {
document.title = title;
}
},
@ -405,7 +409,7 @@ export default {
this.updateHeartbeatList();
feedInterval = setInterval(() => {
this.updateHeartbeatList();
}, 10 * 1000);
}, 5 * 60 * 1000);
},
methods: {

Loading…
Cancel
Save