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)
|
* 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)
|
* 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)
|
* Fixed issues with opening the folder for a file (#606)
|
||||||
|
* Be consistent with the step property on credit inputs (#604)
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
*
|
*
|
||||||
|
|
|
@ -823,7 +823,7 @@ class PublishForm extends React.PureComponent {
|
||||||
<FormRow
|
<FormRow
|
||||||
ref="bid"
|
ref="bid"
|
||||||
type="number"
|
type="number"
|
||||||
step="0.01"
|
step="0.1"
|
||||||
label={__("Deposit")}
|
label={__("Deposit")}
|
||||||
postfix="LBC"
|
postfix="LBC"
|
||||||
onChange={event => {
|
onChange={event => {
|
||||||
|
|
|
@ -33,7 +33,7 @@ class WalletSend extends React.PureComponent {
|
||||||
<FormRow
|
<FormRow
|
||||||
label={__("Amount")}
|
label={__("Amount")}
|
||||||
postfix={__("LBC")}
|
postfix={__("LBC")}
|
||||||
step="0.01"
|
step="0.1"
|
||||||
min="0"
|
min="0"
|
||||||
type="number"
|
type="number"
|
||||||
placeholder="1.23"
|
placeholder="1.23"
|
||||||
|
|
Loading…
Add table
Reference in a new issue