diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 2e31409..b3e2025 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -6,15 +6,10 @@ - - - - - - - - + + + @@ -635,7 +638,6 @@ - @@ -660,7 +662,8 @@ - diff --git a/frontend/components/reception/reception-form.vue b/frontend/components/reception/reception-form.vue index ab2088f..a07a8f8 100644 --- a/frontend/components/reception/reception-form.vue +++ b/frontend/components/reception/reception-form.vue @@ -3,181 +3,96 @@

Réception

-
- - -
+ -
- - -
+ -
- - -
+ -
- - -
+ -
- - -
+ -
- - -
+ -
- - -
+ -
- - -
+
-
- - -
+
@@ -80,13 +79,7 @@ const handleInput = (event: Event) => { emit('update:modelValue', target.value) } -const toggleAllowAny = (event: Event) => { - const target = event.target as HTMLInputElement | null - if (!target) { - return - } - - const nextValue = target.checked +const handleAllowAnyChange = (nextValue: boolean) => { emit('update:allowAny', nextValue) if (!nextValue) { emit('update:modelValue', props.modelValue)