From c937b28a994cf64c33e765f39fad74132bdf45e1 Mon Sep 17 00:00:00 2001 From: Alex Liebowitz Date: Wed, 27 Jul 2016 15:26:49 -0400 Subject: [PATCH] Make Publish confirmation message show title correctly --- 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 3dda5d090..3da6309ee 100644 --- a/js/page/publish.js +++ b/js/page/publish.js @@ -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"; },