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.
This commit is contained in:
Alex Liebowitz 2016-11-18 06:11:02 -05:00
parent f8c77a96cc
commit 298c03283d

View file

@ -164,6 +164,7 @@ var PublishPage = React.createClass({
this.setState({
name: name,
nameResolved: false,
myClaimExists: false,
});
} else {
lbry.getMyClaim(name, (myClaimInfo) => {