My Files: make "Confirm" button in delete modal work

Was calling lbry.setState() instead of this.setState()
This commit is contained in:
Alex Liebowitz 2016-11-17 23:32:24 -05:00
parent 3471184828
commit 3dd961b70a

View file

@ -24,7 +24,7 @@ var MyFilesRowMoreMenu = React.createClass({
}, },
handleDeleteConfirmed: function() { handleDeleteConfirmed: function() {
lbry.deleteFile(this.props.lbryUri); lbry.deleteFile(this.props.lbryUri);
lbry.setState({ this.setState({
modal: null, modal: null,
}); });
}, },