placeholder value should match default value on publish #701
This commit is contained in:
parent
c2a18d6f1b
commit
3209d813f2
1 changed files with 4 additions and 1 deletions
|
@ -661,7 +661,10 @@ class PublishForm extends React.PureComponent {
|
||||||
<span className={!this.state.isFee ? "hidden" : ""}>
|
<span className={!this.state.isFee ? "hidden" : ""}>
|
||||||
<FormFieldPrice
|
<FormFieldPrice
|
||||||
min="0"
|
min="0"
|
||||||
defaultValue={{ amount: 5.0, currency: "LBC" }}
|
defaultValue={{
|
||||||
|
amount: this._defaultPaidPrice,
|
||||||
|
currency: "LBC",
|
||||||
|
}}
|
||||||
onChange={val => this.handleFeeChange(val)}
|
onChange={val => this.handleFeeChange(val)}
|
||||||
/>
|
/>
|
||||||
</span>
|
</span>
|
||||||
|
|
Loading…
Add table
Reference in a new issue