fix: make it public button

This commit is contained in:
Andras Bacsai 2022-08-15 09:15:42 +00:00
parent bed1bb2429
commit 163eabb76c
2 changed files with 2 additions and 1 deletions

View File

@ -59,7 +59,7 @@
async function changeSettings(name: any) { async function changeSettings(name: any) {
if (name !== 'appendOnly') { if (name !== 'appendOnly') {
if (publicLoading || !$status.database.isRunning || name !== 'appendOnly') return; if (publicLoading || !$status.database.isRunning) return;
} }
publicLoading = true; publicLoading = true;
let data = { let data = {

View File

@ -5,5 +5,6 @@ stdenv.mkDerivation {
buildInputs = [ buildInputs = [
git git
git-lfs git-lfs
docker-compose
]; ];
} }