Add new options
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-06-16 19:42:57 +02:00
parent 92f187bf91
commit b28ca5f27d
2 changed files with 42 additions and 1 deletions

View File

@ -17,7 +17,9 @@ export function CheckboxInput(p: {
<Checkbox
disabled={!p.editable}
checked={p.checked}
onChange={(e) => { p.onValueChange(e.target.checked); }}
onChange={(e) => {
p.onValueChange(e.target.checked);
}}
/>
}
label={p.label}