diff --git a/CHANGELOG.md b/CHANGELOG.md index 781f3dc..cba3fe9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,13 @@ # Changelog ## 1.3.3 - * \#49: Download progress is not visible if dependencies are missing * \#51: javascript error * \#52: Mount location is not set error on new install * \#53: Busy notification is still visible when 'Install' button is available +* \#54: Unable to download UI update while dependencies are being checked ## 1.3.2 - * \#48: Support pinning files to cache * Fixed Skynet export display * Properly detect existing remote diff --git a/src/App.jsx b/src/App.jsx index 415f0a7..f6e48bb 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -254,8 +254,8 @@ class App extends IPCContainer { textAlign={'center'} type={'Heading1'}/> 0)} - newReleases={!this.props.UpgradeAvailable && (this.props.NewReleasesAvailable2.length > 0)} + available={!missingDependencies && (this.props.UpgradeAvailable || (this.props.NewReleasesAvailable2.length > 0))} + newReleases={!missingDependencies && (!this.props.UpgradeAvailable && (this.props.NewReleasesAvailable2.length > 0))} clicked={this.handleUpgradeIconClicked} col={dimensions => dimensions.columns - 6} colSpan={5}