diff --git a/apps/client/src/widgets/react/FormList.tsx b/apps/client/src/widgets/react/FormList.tsx index 92c021c55..8be283605 100644 --- a/apps/client/src/widgets/react/FormList.tsx +++ b/apps/client/src/widgets/react/FormList.tsx @@ -141,7 +141,9 @@ export function FormListToggleableItem({ title, currentValue, onChange, ...props return ( { e.stopPropagation(); - onChange(!currentValue); + if (!props.disabled) { + onChange(!currentValue); + } }}> - - - + + + ; }