From 8320eca1119a731e66f6042f84ab36e7704c1e2d Mon Sep 17 00:00:00 2001 From: Zhe Li Date: Wed, 10 May 2023 23:15:43 +0800 Subject: [PATCH] Fix disable backup policy not working issue (#1050) (#1051) --- 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 3f900e5cc..db6a7fa9a 100644 --- a/src/components/Popup/BackupPage.vue +++ b/src/components/Popup/BackupPage.vue @@ -75,7 +75,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; }, }, methods: {