diff --git a/client/src/pages/AutomationRules.tsx b/client/src/pages/AutomationRules.tsx index 7baa25e..22e93f0 100644 --- a/client/src/pages/AutomationRules.tsx +++ b/client/src/pages/AutomationRules.tsx @@ -434,14 +434,14 @@ export default function AutomationRules() {
setActions({ ...actions, serviceConcerne: value || undefined })} + value={actions.serviceConcerne || "__NONE__"} + onValueChange={(value) => setActions({ ...actions, serviceConcerne: value === "__NONE__" ? undefined : value })} > - Ne pas modifier + Ne pas modifier {departments?.map((dept) => ( {dept.name} @@ -471,14 +471,14 @@ export default function AutomationRules() {