From dcb688b738d475643dcb6fa8071f0af6e8929659 Mon Sep 17 00:00:00 2001 From: Zhe Li Date: Wed, 10 May 2023 23:05:30 +0800 Subject: [PATCH] Fix disable backup policy not working issue --- src/components/Popup/BackupPage.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Popup/BackupPage.vue b/src/components/Popup/BackupPage.vue index 70a48647f..44617f58d 100644 --- a/src/components/Popup/BackupPage.vue +++ b/src/components/Popup/BackupPage.vue @@ -96,7 +96,7 @@ export default Vue.extend({ return this.$store.getters["accounts/currentlyEncrypted"]; }, backupDisabled: function () { - return this.$store.getters["menu/storageArea"]; + return this.$store.state.menu.backupDisabled; }, isDataLinkSupported: function () { return !isSafari;