This commit is contained in:
MaysWind
2020-11-22 15:59:23 +08:00
parent 1e4fe9bd72
commit 5a57eb3c5d
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
const parentAccountCurrencyPlacehodler = '---';
const parentAccountCurrencyPlaceholder = '---';
const defaultCurrencySymbol = '¤';
// ISO 4217
@@ -630,7 +630,7 @@ const allCurrencies = {
};
export default {
parentAccountCurrencyPlacehodler: parentAccountCurrencyPlacehodler,
parentAccountCurrencyPlaceholder: parentAccountCurrencyPlaceholder,
defaultCurrencySymbol: defaultCurrencySymbol,
all: allCurrencies
};
+1 -1
View File
@@ -513,7 +513,7 @@ export default {
name: self.account.name,
icon: self.account.icon,
color: self.account.color,
currency: self.account.type === self.$constants.account.allAccountTypes.SingleAccount.toString() ? self.account.currency : self.$constants.currency.parentAccountCurrencyPlacehodler,
currency: self.account.type === self.$constants.account.allAccountTypes.SingleAccount.toString() ? self.account.currency : self.$constants.currency.parentAccountCurrencyPlaceholder,
comment: self.account.comment,
subAccounts: self.account.type === self.$constants.account.allAccountTypes.SingleAccount.toString() ? null : subAccounts,
};