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) {
if (name !== 'appendOnly') {
if (publicLoading || !$status.database.isRunning || name !== 'appendOnly') return;
if (publicLoading || !$status.database.isRunning) return;
}
publicLoading = true;
let data = {

View File

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