From 5a0057093c351ebcb6eb6f7a05b97a6762d3f36a Mon Sep 17 00:00:00 2001 From: Alex Liebowitz Date: Fri, 11 Nov 2016 05:35:33 -0500 Subject: [PATCH] Publish page: display exact bid amounts --- js/page/publish.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/js/page/publish.js b/js/page/publish.js index adb2adb29..ae89f4307 100644 --- a/js/page/publish.js +++ b/js/page/publish.js @@ -337,7 +337,7 @@ var PublishPage = React.createClass({ (!this.state.name ? '' : (! this.state.nameResolved ? The name {this.state.name} is available. : (this.state.myClaimExists ? You already have a claim on the name {this.state.name}. You can use this page to update your claim. - : The name {this.state.name} is currently claimed for {lbry.formatCredits(this.state.topClaimValue)} credits.))) + : The name {this.state.name} is currently claimed for {this.state.topClaimValue} credits.))) }
What LBRY name would you like to claim for this file?
@@ -358,13 +358,13 @@ var PublishPage = React.createClass({

Bid Amount

- Credits + Credits
How much would you like to bid for this name? { !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 {lbry.formatCredits(this.state.myClaimValue)} credits. - : (this.state.myClaimExists ? You have a non-winning bid on this name for {lbry.formatCredits(this.state.myClaimValue)} credits. - To control this name, you'll need to increase your bid to at least {lbry.formatCredits(this.state.myClaimValue)} credits. - : You must bid over {lbry.formatCredits(this.state.topClaimValue)} credits to claim this 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. + : You must bid over {this.state.topClaimValue} credits to claim this name.)) }