aboutsummaryrefslogtreecommitdiff
path: root/components/ui.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'components/ui.tsx')
-rw-r--r--components/ui.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/ui.tsx b/components/ui.tsx
index c92ebfe..bf8c65d 100644
--- a/components/ui.tsx
+++ b/components/ui.tsx
@@ -123,7 +123,7 @@ export function CheckBox(props: {
onclick?: (state: boolean) => void;
}) {
return <div
- onClick={() => props.onclick && props.onclick(!props.state)}
+ onClick={() => props.onclick && props.onclick(!props.state)}
id={props.id}
className={'checkbox dispinbl ' + (props.state ? 'on' : 'off')}
>