diff --git a/rsconcept/frontend/src/components/ui/Checkbox.tsx b/rsconcept/frontend/src/components/ui/Checkbox.tsx index de74e8e7..5b221673 100644 --- a/rsconcept/frontend/src/components/ui/Checkbox.tsx +++ b/rsconcept/frontend/src/components/ui/Checkbox.tsx @@ -65,7 +65,8 @@ function Checkbox({
- {value ? ( -
- -
- ) : null} + {value ? : null}
{label ? {label} : null} diff --git a/rsconcept/frontend/src/components/ui/CheckboxTristate.tsx b/rsconcept/frontend/src/components/ui/CheckboxTristate.tsx index 0416375d..b49ec701 100644 --- a/rsconcept/frontend/src/components/ui/CheckboxTristate.tsx +++ b/rsconcept/frontend/src/components/ui/CheckboxTristate.tsx @@ -66,6 +66,7 @@ function CheckboxTristate({
- {value ? ( -
- -
- ) : null} - {value == null ? ( -
- -
- ) : null} + {value ? : null} + {value == null ? : null}
{label ? {label} : null}