This commit is contained in:
2019-10-22 10:58:41 -05:00
parent 227678f3ae
commit 2dae32b7b3
15 changed files with 3 additions and 3 deletions

BIN
images/blue/icon_24X24.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 262 B

BIN
images/blue/icon_40x40.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 298 B

BIN
images/blue/icon_48x48.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 315 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 552 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 820 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 202 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 281 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 820 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 281 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 361 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 361 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 552 B

View File

@@ -139,13 +139,13 @@ export const notifyActiveRelease = (release, version) => {
export const setActiveRelease = (release, version) => {
return (dispatch, getState) => {
dispatch(setAllowMount(false));
const relVer = getState().relver;
const relver = getState().relver;
const common = getState().common;
if (release >= Constants.RELEASE_TYPES.length) {
release = getState().relver.ReleaseDefault;
release = relver.ReleaseDefault;
version = -1;
}
const versions = relVer.VersionLookup[Constants.RELEASE_TYPES[release]];
const versions = relver.VersionLookup[Constants.RELEASE_TYPES[release]];
dispatch(setAllowDismissDependencies(versions && (versions.length > 1)));
dispatch(setDismissDependencies(false));
dispatch(notifyActiveRelease(release, version));