use consistent step property on credit inputs #604
This commit is contained in:
parent
342162cfcc
commit
9308971cab
3 changed files with 3 additions and 2 deletions
|
@ -19,6 +19,7 @@ Web UI version numbers should always match the corresponding version of LBRY App
|
|||
* The folder icon representing a local download now shows up properly on Channel pages (#587)
|
||||
* While editing a publish, the URL will no longer change if you select a new file. (#601)
|
||||
* Fixed issues with opening the folder for a file (#606)
|
||||
* Be consistent with the step property on credit inputs (#604)
|
||||
|
||||
### Deprecated
|
||||
*
|
||||
|
|
|
@ -823,7 +823,7 @@ class PublishForm extends React.PureComponent {
|
|||
<FormRow
|
||||
ref="bid"
|
||||
type="number"
|
||||
step="0.01"
|
||||
step="0.1"
|
||||
label={__("Deposit")}
|
||||
postfix="LBC"
|
||||
onChange={event => {
|
||||
|
|
|
@ -33,7 +33,7 @@ class WalletSend extends React.PureComponent {
|
|||
<FormRow
|
||||
label={__("Amount")}
|
||||
postfix={__("LBC")}
|
||||
step="0.01"
|
||||
step="0.1"
|
||||
min="0"
|
||||
type="number"
|
||||
placeholder="1.23"
|
||||
|
|
Loading…
Reference in a new issue