show effective amount as top bid
This changes amount > effective_amount which provides a more accurate top bid.
This commit is contained in:
parent
d553f9e8e3
commit
0bc3b31946
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ class PublishForm extends React.PureComponent {
|
|||
topClaimValue() {
|
||||
if (!this.claim()) return null;
|
||||
|
||||
return parseFloat(this.claim().amount);
|
||||
return parseFloat(this.claim().effective_amount);
|
||||
}
|
||||
|
||||
myClaimExists() {
|
||||
|
|
Loading…
Reference in a new issue