diff --git a/src/views/mobile/Home.vue b/src/views/mobile/Home.vue index 676e4ecc..deb4b218 100644 --- a/src/views/mobile/Home.vue +++ b/src/views/mobile/Home.vue @@ -176,7 +176,9 @@ export default { loading: true, todayFirstUnixTime: self.$utilities.getTodayFirstUnixTime(), todayLastUnixTime: self.$utilities.getTodayLastUnixTime(), - showAmountInHomePage: self.$settings.isShowAmountInHomePage() + showAmountInHomePage: self.$settings.isShowAmountInHomePage(), + isEnableThousandsSeparator: self.$settings.isEnableThousandsSeparator(), + currencyDisplayMode: self.$settings.getCurrencyDisplayMode() }; }, computed: { @@ -255,6 +257,12 @@ export default { onPageAfterIn() { this.showAmountInHomePage = this.$settings.isShowAmountInHomePage(); + if (this.isEnableThousandsSeparator !== this.$settings.isEnableThousandsSeparator() || this.currencyDisplayMode !== this.$settings.getCurrencyDisplayMode()) { + this.isEnableThousandsSeparator = this.$settings.isEnableThousandsSeparator(); + this.currencyDisplayMode = this.$settings.getCurrencyDisplayMode(); + this.$forceUpdate(); + } + let dateChanged = false; if (this.todayFirstUnixTime !== this.$utilities.getTodayFirstUnixTime()) {