db diff: save/sync

This commit is contained in:
Jan Prochazka
2021-11-06 16:34:02 +01:00
parent 17286e0c3e
commit 6269171f5d
6 changed files with 157 additions and 17 deletions

View File

@@ -60,7 +60,7 @@
<svelte:fragment slot="0" let:row>
<CheckboxField
checked={row.isOutput}
onChange={e => {
on:change={e => {
if (e.target.checked) changeColumn({ ...row, isOutput: true });
else changeColumn({ ...row, isOutput: false });
}}