fix: make it public button
This commit is contained in:
parent
bed1bb2429
commit
163eabb76c
2 changed files with 2 additions and 1 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
1
csb.nix
1
csb.nix
|
|
@ -5,5 +5,6 @@ stdenv.mkDerivation {
|
|||
buildInputs = [
|
||||
git
|
||||
git-lfs
|
||||
docker-compose
|
||||
];
|
||||
}
|
||||
Loading…
Reference in a new issue