diff --git a/CHANGELOG.md b/CHANGELOG.md index 3672d3581..f4f53a29a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ Web UI version numbers should always match the corresponding version of LBRY App * ### Fixed + * On load screen, always show Cancel link if a previous page is available * When user hits "Watch," don't check balance if download already started * * diff --git a/js/component/load_screen.js b/js/component/load_screen.js index d8dedbe3d..ad013030c 100644 --- a/js/component/load_screen.js +++ b/js/component/load_screen.js @@ -34,7 +34,7 @@ var LoadScreen = React.createClass({ {this.props.isWarning ? : null} {this.props.details} - {this.props.isWarning + {window.history.length > 1 ?
: null}