From a9cb0abcc6aa3d803896b955e097307c39e114ea Mon Sep 17 00:00:00 2001 From: Alex Liebowitz Date: Mon, 10 Apr 2017 04:07:48 -0400 Subject: [PATCH] Publish: Rename "None" new channel option to "Anonymous" --- ui/js/page/publish.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/js/page/publish.js b/ui/js/page/publish.js index f456d5f39..b7a0eac43 100644 --- a/ui/js/page/publish.js +++ b/ui/js/page/publish.js @@ -77,7 +77,7 @@ var PublishPage = React.createClass({ name: this.state.name, bid: parseFloat(this.state.bid), metadata: metadata, - ... this.state.channel != 'new' && this.state.channel != 'none' ? {channel_name: this.state.channel} : {}, + ... this.state.channel != 'new' && this.state.channel != 'anonymous' ? {channel_name: this.state.channel} : {}, }; if (this.refs.file.getValue() !== '') { @@ -113,7 +113,7 @@ var PublishPage = React.createClass({ bid: '', feeAmount: '', feeCurrency: 'USD', - channel: 'none', + channel: 'anonymous', newChannelName: '@', newChannelBid: '', nameResolved: false, @@ -352,7 +352,7 @@ var PublishPage = React.createClass({

Channel

- + {this.state.channels.map(({name}) => )}