mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-19 17:24:26 +08:00
fix typo
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
const parentAccountCurrencyPlacehodler = '---';
|
const parentAccountCurrencyPlaceholder = '---';
|
||||||
const defaultCurrencySymbol = '¤';
|
const defaultCurrencySymbol = '¤';
|
||||||
|
|
||||||
// ISO 4217
|
// ISO 4217
|
||||||
@@ -630,7 +630,7 @@ const allCurrencies = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
parentAccountCurrencyPlacehodler: parentAccountCurrencyPlacehodler,
|
parentAccountCurrencyPlaceholder: parentAccountCurrencyPlaceholder,
|
||||||
defaultCurrencySymbol: defaultCurrencySymbol,
|
defaultCurrencySymbol: defaultCurrencySymbol,
|
||||||
all: allCurrencies
|
all: allCurrencies
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -513,7 +513,7 @@ export default {
|
|||||||
name: self.account.name,
|
name: self.account.name,
|
||||||
icon: self.account.icon,
|
icon: self.account.icon,
|
||||||
color: self.account.color,
|
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,
|
comment: self.account.comment,
|
||||||
subAccounts: self.account.type === self.$constants.account.allAccountTypes.SingleAccount.toString() ? null : subAccounts,
|
subAccounts: self.account.type === self.$constants.account.allAccountTypes.SingleAccount.toString() ? null : subAccounts,
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user