fixes frontend button

This commit is contained in:
Mose Müller 2024-04-17 09:07:24 +02:00
parent a77dcfdfae
commit dfe543067f

View File

@ -40,7 +40,13 @@ export const ButtonComponent = React.memo((props: ButtonComponentProps) => {
}, [props.value]);
const setChecked = (checked: boolean) => {
changeCallback(checked);
changeCallback({
type: 'bool',
value: checked,
full_access_path: fullAccessPath,
readonly: readOnly,
doc: docString
});
};
return (