Make Publish confirmation message show title correctly

This commit is contained in:
Alex Liebowitz 2016-07-27 15:26:49 -04:00
parent 03052fde62
commit c937b28a99

View file

@ -114,7 +114,7 @@ var PublishPage = React.createClass({
};
},
handlePublishSuccess: function() {
alert(`Your file ${this.refs.meta_title.value} has been published to LBRY at the address lbry://${this.state.name}!\n\n` +
alert(`Your file ${this.refs.meta_title.getValue()} has been published to LBRY at the address lbry://${this.state.name}!\n\n` +
`You will now be taken to your My Files page, where your newly published file should appear within a few minutes.`);
window.location = "?files";
},