Skip to content

Commit

Permalink
Change numeric to decimal
Browse files Browse the repository at this point in the history
  • Loading branch information
Duddino committed Jan 8, 2025
1 parent dada316 commit f6d956a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions scripts/dashboard/TransferMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ async function selectContact() {
placeholder="0.00"
autocomplete="nope"
onkeypress="return event.charCode >= 46 && event.charCode <= 57"
inputmode="numeric"
inputmode="decimal"
onkeydown="javascript: return event.keyCode == 69 ? false : true"
data-testid="amount"
@input="syncAmountCurrency"
Expand Down Expand Up @@ -191,7 +191,7 @@ async function selectContact() {
placeholder="0.00"
autocomplete="nope"
onkeypress="return event.charCode >= 46 && event.charCode <= 57"
inputmode="numeric"
inputmode="decimal"
onkeydown="javascript: return event.keyCode == 69 ? false : true"
data-testid="amountCurrency"
@input="syncAmount"
Expand Down
4 changes: 2 additions & 2 deletions scripts/stake/StakeInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ async function selectContact() {
<input
class="btn-group-input balanceInput"
style="padding-right: 0px; border-right: 0px"
inputmode="numeric"
inputmode="decimal"
onkeypress="return event.charCode >= 46 && event.charCode <= 57"
placeholder="0.00"
autocomplete="nope"
Expand Down Expand Up @@ -121,7 +121,7 @@ async function selectContact() {
<div class="input-group mb-3">
<input
class="btn-group-input balanceInput"
inputmode="numeric"
inputmode="decimal"
onkeypress="return event.charCode >= 46 && event.charCode <= 57"
placeholder="0.00"
autocomplete="nope"
Expand Down

0 comments on commit f6d956a

Please sign in to comment.