Skip to content

Commit

Permalink
Merge pull request #42 from zargarzadehm/fix_wallet_page_inputs
Browse files Browse the repository at this point in the history
fixed float type inputs
  • Loading branch information
deadit authored Jan 18, 2022
2 parents 1436e20 + 1bdb0ef commit 322bcb7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ const AssetIssueForm = ({
className={cn('form-control', {
'is-invalid': meta.touched && meta.error,
})}
type="number"
type="float"
placeholder="Minimum 0.001 ERG"
{...input}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ const PaymentSendForm = ({
className={cn('form-control', {
'is-invalid': meta.touched && meta.error,
})}
type="number"
type="float"
placeholder="0,000"
{...input}
/>
Expand All @@ -273,7 +273,7 @@ const PaymentSendForm = ({
className={cn('form-control', {
'is-invalid': meta.touched && meta.error,
})}
type="number"
type="float"
placeholder="Minimum 0.001 ERG"
{...input}
/>
Expand Down

0 comments on commit 322bcb7

Please sign in to comment.