From 298c03283d754a38e509b240f031ccccf9e94481 Mon Sep 17 00:00:00 2001 From: Alex Liebowitz Date: Fri, 18 Nov 2016 06:11:02 -0500 Subject: [PATCH] Fix issue with live updating logic on Publish page Previously, if the user typed a name that they have a claim on and then continued typing, some of the interface would not be updated to show that they don't have a claim. --- js/page/publish.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/page/publish.js b/js/page/publish.js index 03cda29cf..007b9fd48 100644 --- a/js/page/publish.js +++ b/js/page/publish.js @@ -164,6 +164,7 @@ var PublishPage = React.createClass({ this.setState({ name: name, nameResolved: false, + myClaimExists: false, }); } else { lbry.getMyClaim(name, (myClaimInfo) => {