Disable publish button if bid is too low
This commit is contained in:
parent
f1c45775ab
commit
103e4302d4
1 changed files with 4 additions and 1 deletions
|
@ -876,7 +876,10 @@ class PublishForm extends React.PureComponent {
|
|||
disabled={
|
||||
this.state.submitting ||
|
||||
(this.state.uri &&
|
||||
this.props.resolvingUris.indexOf(this.state.uri) !== -1)
|
||||
this.props.resolvingUris.indexOf(this.state.uri) !== -1) ||
|
||||
(this.claim() &&
|
||||
!this.topClaimIsMine() &&
|
||||
this.state.bid <= this.topClaimValue())
|
||||
}
|
||||
/>
|
||||
<Link
|
||||
|
|
Loading…
Reference in a new issue