Migrate config, migrate analysis plotselection

This commit is contained in:
Christoph Kluge
2025-06-16 17:09:02 +02:00
parent d6d92071bf
commit 6a6dca3fce
16 changed files with 224 additions and 199 deletions
+6 -3
View File
@@ -6,10 +6,13 @@
import { getContext, onMount } from "svelte";
import { Col, Card, CardBody, CardTitle } from "@sveltestrap/sveltestrap";
let scrambled;
/*Const Init */
const resampleConfig = getContext("resampling");
/* State Init */
let scrambled = $state(false);
/* on Mount */
onMount(() => {
scrambled = window.localStorage.getItem("cc-scramble-names") != null;
});
@@ -33,7 +36,7 @@
type="checkbox"
id="scramble-names-checkbox"
style="margin-right: 1em;"
on:click={() => handleScramble()}
onclick={() => handleScramble()}
bind:checked={scrambled}
/>
Active?