Refactoring

This commit is contained in:
Scott E. Graves
2019-06-06 21:23:20 -05:00
parent 5d4e26d7e5
commit 1dc99567f3
2 changed files with 10 additions and 8 deletions

View File

@@ -131,12 +131,6 @@ class App extends IPCContainer {
});
};
getSelectedVersion = () => {
return (this.props.ReleaseVersion === -1) ?
'unavailable' :
this.props.VersionLookup[Constants.RELEASE_TYPES[this.props.Release]][this.props.ReleaseVersion];
};
detectUpgrades = () => {
if (this.props.AppPlatform !== 'unknown') {
this.props.loadReleases();
@@ -144,6 +138,12 @@ class App extends IPCContainer {
}
};
getSelectedVersion = () => {
return (this.props.ReleaseVersion === -1) ?
'unavailable' :
this.props.VersionLookup[Constants.RELEASE_TYPES[this.props.Release]][this.props.ReleaseVersion];
};
handleDependencyDownload = (url) => {
this.setState({
DownloadActive: true,