Skip to content

Commit

Permalink
Default to fiat and show keyboard when setting amount in receive page
Browse files Browse the repository at this point in the history
  • Loading branch information
joemarct committed Nov 2, 2024
1 parent 9253098 commit 895e903
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src-capacitor/ios/App/App.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@
CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 173;
CURRENT_PROJECT_VERSION = 174;
DEVELOPMENT_TEAM = 89X576BZBF;
INFOPLIST_FILE = App/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
Expand All @@ -387,7 +387,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = App/AppRelease.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 173;
CURRENT_PROJECT_VERSION = 174;
DEVELOPMENT_TEAM = 89X576BZBF;
INFOPLIST_FILE = App/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
Expand Down
4 changes: 2 additions & 2 deletions src/pages/transaction/receive.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
style="font-size: 18px;"
:class="getDarkModeClass(darkMode)"
>
<span class="cursor-pointer" @click="amountDialog = true">
<span class="cursor-pointer" @click="amountDialog = true; customKeyboardState = 'show';">
{{ amount ? $t('Update') : $t('Set') }} {{ $t('Amount') }}
</span>
<span class="q-ml-md text-negative cursor-pointer" @click="amount = ''">
Expand Down Expand Up @@ -205,7 +205,7 @@ export default {
readonlyState: false,
amountDialog: false,
customKeyboardState: 'dismiss',
setAmountInFiat: false,
setAmountInFiat: true,
tokens: []
}
},
Expand Down

0 comments on commit 895e903

Please sign in to comment.