placeholder value should match default value on publish #701

This commit is contained in:
Jeremy Kauffman 2017-11-10 10:41:22 -05:00
parent c2a18d6f1b
commit 3209d813f2

View file

@ -661,7 +661,10 @@ class PublishForm extends React.PureComponent {
<span className={!this.state.isFee ? "hidden" : ""}>
<FormFieldPrice
min="0"
defaultValue={{ amount: 5.0, currency: "LBC" }}
defaultValue={{
amount: this._defaultPaidPrice,
currency: "LBC",
}}
onChange={val => this.handleFeeChange(val)}
/>
</span>