This commit is contained in:
tree 2022-06-05 04:03:40 +02:00
rodič 10267c07fe
revize 65012f7953
2 změnil soubory, kde provedl 5 přidání a 2 odebrání

Zobrazit soubor

@ -32,7 +32,7 @@ export const loadInfo = writable({ loaded: false })
export const schedulePref = writable({
stage: null,
track: null,
time: null,
time: '2',
tracks: [],
showDescriptions: false
});

Zobrazit soubor

@ -43,6 +43,9 @@
}
} else {
sp[up.key] = _sp ? _sp : "all";
if (up.key === 'time') {
sp[up.key] = _sp ? _sp : "2";
}
}
}
return sp;
@ -67,7 +70,7 @@
const spsub = schedulePref.subscribe((sp) => {
const updates = [];
updates.push(["time", sp.time === "all" ? undefined : sp.time]);
updates.push(["time", sp.time === "2" ? undefined : sp.time]);
updates.push(["stage", sp.stage === "all" ? undefined : sp.stage]);
updates.push([
"desc",