From bd190d30cb81753bc4c5af6c77ccf238d50af12f Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Tue, 9 Mar 2021 10:37:54 -0600 Subject: [PATCH] #54: Unable to download UI update while dependencies are being checked --- CHANGELOG.md | 3 +-- src/App.jsx | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) 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}