Skip to content

Commit

Permalink
#74 #75 accountData fix
Browse files Browse the repository at this point in the history
  • Loading branch information
scholtz committed Feb 10, 2024
1 parent 9a9cefe commit 3d4e8a6
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/pages/Account/Assets.vue
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ export default {
);
},
accountData() {
if (!this.account) return false;
if (!this.account.data) return false;
return this.account.data[this.$store.state.config.env];
},
Expand Down
1 change: 1 addition & 0 deletions src/pages/Account/Transactions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@ export default {
);
},
accountData() {
if (!this.account) return false;
if (!this.account.data) return false;
return this.account.data[this.$store.state.config.env];
},
Expand Down
1 change: 1 addition & 0 deletions src/pages/AccountOverview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -491,6 +491,7 @@ export default {
);
},
accountData() {
if (!this.account) return false;
if (!this.account.data) return false;
return this.account.data[this.$store.state.config.env];
},
Expand Down
1 change: 1 addition & 0 deletions src/pages/Asset/Create.vue
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,7 @@ export default {
);
},
accountData() {
if (!this.account) return false;
if (!this.account.data) return false;
return this.account.data[this.$store.state.config.env];
},
Expand Down
1 change: 1 addition & 0 deletions src/pages/Asset/OptIn.vue
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ export default {
);
},
accountData() {
if (!this.account) return false;
if (!this.account.data) return false;
return this.account.data[this.$store.state.config.env];
},
Expand Down
1 change: 1 addition & 0 deletions src/pages/Pay.vue
Original file line number Diff line number Diff line change
Expand Up @@ -846,6 +846,7 @@ export default {
);
},
accountData() {
if (!this.account) return false;
if (!this.account.data) return false;
return this.account.data[this.$store.state.config.env];
},
Expand Down
1 change: 1 addition & 0 deletions src/pages/ReceivePayment.vue
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ export default {
);
},
accountData() {
if (!this.account) return false;
if (!this.account.data) return false;
return this.account.data[this.$store.state.config.env];
},
Expand Down
1 change: 1 addition & 0 deletions src/pages/Swap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,7 @@ export default {
);
},
accountData() {
if (!this.account) return false;
if (!this.account.data) return false;
return this.account.data[this.$store.state.config.env];
},
Expand Down

0 comments on commit 3d4e8a6

Please sign in to comment.