diff --git a/src/views/mobile/transactions/List.vue b/src/views/mobile/transactions/List.vue
index 68a86ad4..b1f12a96 100644
--- a/src/views/mobile/transactions/List.vue
+++ b/src/views/mobile/transactions/List.vue
@@ -10,7 +10,7 @@
-
+
@@ -533,6 +533,17 @@ export default {
return this.$store.getters.currentUserDefaultCurrency;
},
+ canAddTransaction() {
+ if (this.query.accountId && this.query.accountId !== '0') {
+ const account = this.allAccounts[this.query.accountId];
+
+ if (account && account.type === this.$constants.account.allAccountTypes.MultiSubAccounts) {
+ return false;
+ }
+ }
+
+ return true;
+ },
currentTimezoneOffsetMinutes() {
return this.$utilities.getTimezoneOffsetMinutes();
},