From b4d97b1cee020550497a063c039867f86ab9f34e Mon Sep 17 00:00:00 2001 From: Alex Liebowitz Date: Fri, 11 Nov 2016 05:39:55 -0500 Subject: [PATCH] Publish page: fix issues with display of top claim value - Display top bid correctly (before, it would sometimes show the user's bid instead) - Change wording to say "more than ___ credits" instead of "at least ___ credits" --- js/page/publish.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/page/publish.js b/js/page/publish.js index ae89f4307..af6e25682 100644 --- a/js/page/publish.js +++ b/js/page/publish.js @@ -363,7 +363,7 @@ var PublishPage = React.createClass({ { !this.state.nameResolved ? Since this name is not currently resolved, you may bid as low as you want, but higher bids help prevent others from claiming your name. : (this.state.topClaimIsMine ? You currently control this name with a bid of {this.state.myClaimValue} credits. : (this.state.myClaimExists ? You have a non-winning bid on this name for {this.state.myClaimValue} credits. - To control this name, you'll need to increase your bid to at least {this.state.myClaimValue} credits. + To control this name, you'll need to increase your bid to more than {this.state.topClaimValue} credits. : You must bid over {this.state.topClaimValue} credits to claim this name.)) }