From aedcbdf898b0620ecce0235912214f0e41230f56 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Tue, 2 Oct 2018 16:20:14 -0500 Subject: [PATCH] Fix configuration detection --- src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.js b/src/App.js index 1085df0..61651b6 100644 --- a/src/App.js +++ b/src/App.js @@ -528,7 +528,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_support; const showDependencies = missingDependencies && !this.state.DownloadActive;