From cf6b5b68d7774df1a02bc33fc1a57fd9cdec2bab Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Sun, 30 Sep 2018 11:03:23 -0500 Subject: [PATCH] Fix configuration check --- src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.js b/src/App.js index 2635a6f..1826b04 100644 --- a/src/App.js +++ b/src/App.js @@ -465,7 +465,7 @@ class App extends Component { const allowMount = this.state.RepertoryVersion !== 'none'; const missingDependencies = (this.state.MissingDependencies.length > 0); const allowConfig = this.state.LocationsLookup[selectedVersion] && - !this.state.LocationsLookup[selectedVersion].config_allowed; + this.state.LocationsLookup[selectedVersion].config_allowed; const showDependencies = missingDependencies && !this.state.DownloadActive;