diff --git a/src-capacitor/ios/App/App.xcodeproj/project.pbxproj b/src-capacitor/ios/App/App.xcodeproj/project.pbxproj index 6b06a1a31..ba2803ced 100644 --- a/src-capacitor/ios/App/App.xcodeproj/project.pbxproj +++ b/src-capacitor/ios/App/App.xcodeproj/project.pbxproj @@ -364,7 +364,7 @@ CODE_SIGN_ENTITLEMENTS = App/App.entitlements; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 161; + CURRENT_PROJECT_VERSION = 163; DEVELOPMENT_TEAM = 89X576BZBF; INFOPLIST_FILE = App/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 13.0; @@ -387,7 +387,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_ENTITLEMENTS = App/AppRelease.entitlements; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 161; + CURRENT_PROJECT_VERSION = 163; DEVELOPMENT_TEAM = 89X576BZBF; INFOPLIST_FILE = App/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 13.0; diff --git a/src/pages/transaction/send.vue b/src/pages/transaction/send.vue index 4a56f1c54..39c1a96a3 100644 --- a/src/pages/transaction/send.vue +++ b/src/pages/transaction/send.vue @@ -536,6 +536,9 @@ export default { return this.$store.getters['darkmode/getStatus'] }, denomination () { + if (this.isSLP || this.isCashToken) { + return 'BCH' + } return this.$store.getters['global/denomination'] }, theme () { diff --git a/src/utils/denomination-utils.js b/src/utils/denomination-utils.js index a2e410630..708423bc6 100644 --- a/src/utils/denomination-utils.js +++ b/src/utils/denomination-utils.js @@ -38,7 +38,7 @@ export function parseAssetDenomination (denomination, asset, isInput = false, su ).substring(0, setSubStringMaxLength) if (asset.thousandSeparator) { newBalance = parseFloat(newBalance).toLocaleString('en-US', { - maximumFractionDigits: decimal + maximumFractionDigits: asset.decimal }) } completeAsset = `${newBalance} ${asset.symbol}`