load once and cache

pull/3838/head
Substancia 1 year ago
parent 1db6722670
commit 15d7f5d348

@ -335,6 +335,7 @@ export default {
*/
saveGeneral() {
localStorage.timezone = this.$root.userTimezone;
this.$root.use12HourTimeFormat = this.settings.use12HourTimeFormat;
this.saveSettings();
},
/**

@ -113,8 +113,11 @@ export default {
},
},
mounted() {
created() {
this.loadSettings();
},
mounted() {
this.getImportantHeartbeatListLength();
this.$root.emitter.on("newImportantHeartbeat", this.onNewImportantHeartbeat);

@ -413,8 +413,11 @@ export default {
},
},
mounted() {
created() {
this.loadSettings();
},
mounted() {
this.getImportantHeartbeatListLength();
this.$root.emitter.on("newImportantHeartbeat", this.onNewImportantHeartbeat);

Loading…
Cancel
Save