#54: Unable to download UI update while dependencies are being checked

This commit is contained in:
2021-03-09 10:37:54 -06:00
parent f8d2598649
commit bd190d30cb
2 changed files with 3 additions and 4 deletions

View File

@@ -1,14 +1,13 @@
# Changelog # Changelog
## 1.3.3 ## 1.3.3
* \#49: Download progress is not visible if dependencies are missing * \#49: Download progress is not visible if dependencies are missing
* \#51: javascript error * \#51: javascript error
* \#52: Mount location is not set error on new install * \#52: Mount location is not set error on new install
* \#53: Busy notification is still visible when 'Install' button is available * \#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 ## 1.3.2
* \#48: Support pinning files to cache * \#48: Support pinning files to cache
* Fixed Skynet export display * Fixed Skynet export display
* Properly detect existing remote * Properly detect existing remote

View File

@@ -254,8 +254,8 @@ class App extends IPCContainer {
textAlign={'center'} textAlign={'center'}
type={'Heading1'}/> type={'Heading1'}/>
<UpgradeIcon <UpgradeIcon
available={this.props.UpgradeAvailable || (this.props.NewReleasesAvailable2.length > 0)} available={!missingDependencies && (this.props.UpgradeAvailable || (this.props.NewReleasesAvailable2.length > 0))}
newReleases={!this.props.UpgradeAvailable && (this.props.NewReleasesAvailable2.length > 0)} newReleases={!missingDependencies && (!this.props.UpgradeAvailable && (this.props.NewReleasesAvailable2.length > 0))}
clicked={this.handleUpgradeIconClicked} clicked={this.handleUpgradeIconClicked}
col={dimensions => dimensions.columns - 6} col={dimensions => dimensions.columns - 6}
colSpan={5} colSpan={5}