#54: Unable to download UI update while dependencies are being checked
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -254,8 +254,8 @@ class App extends IPCContainer {
|
||||
textAlign={'center'}
|
||||
type={'Heading1'}/>
|
||||
<UpgradeIcon
|
||||
available={this.props.UpgradeAvailable || (this.props.NewReleasesAvailable2.length > 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}
|
||||
|
||||
Reference in New Issue
Block a user