Skip to content

Commit

Permalink
Fix non-higurashi install pages not loading
Browse files Browse the repository at this point in the history
  • Loading branch information
drojf committed Jan 25, 2021
1 parent 190e0e9 commit 42cf77b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion httpGUI/installer.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<body>
<!-- Only elements inside this <div id="app"> will be monitored by Vue.
The "v-cloak" tells Vue to disable showing this element until it has finished loading. -->
<div id="app" class="main-container" v-cloak v-show="selectedSubMod != null">
<div id="app" class="main-container" v-cloak v-show="installDataLoaded">
<div id="modal-container" >
<modal v-bind:visible="installErrorDescription" v-on:close="installErrorDescription = ''">
<h3>Please read the below message</h3>
Expand Down
2 changes: 2 additions & 0 deletions httpGUI/python-patcher-lib.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ window.onload = function onWindowLoaded() {
// Game installs which have been partially uninstalled via Steam, but where some mod files still exist on disk
partiallyUninstalledPaths: [],
installErrorDescription: "",
installDataLoaded: false,
},
methods: {
doInstall(deleteVersionInformation) {
Expand Down Expand Up @@ -408,6 +409,7 @@ Continue install anyway?`)) {
});
setInstallStartedAndBeginPolling();
}
app.installDataLoaded = true;
});

// When any properties of the selected submod and child properites change,
Expand Down

0 comments on commit 42cf77b

Please sign in to comment.