diff --git a/resources/js/components/Evaluations/Single/Components/Step4/MeasureActionForm.vue b/resources/js/components/Evaluations/Single/Components/Step4/MeasureActionForm.vue
index 6ae132f0a1c23f01bdf046b0f5854d5f080769a1..ffb5fa0d9a89003e08a07d9e97768b81b6c91bc1 100644
--- a/resources/js/components/Evaluations/Single/Components/Step4/MeasureActionForm.vue
+++ b/resources/js/components/Evaluations/Single/Components/Step4/MeasureActionForm.vue
@@ -29,7 +29,14 @@
             />
 
             <label :for="`manager${measure.id}`" class="mt-2" :class="{ 'text-danger': submitted && $v.manager.$error }"> Choisir la personne en charge <i class="text-muted small">(Obligatoire)</i></label>
-            <input :id="`manager${measure.id}`" v-model="manager" type="text" class="form-control form-control-sm" :disabled="!isEditable"/>
+            <input
+                :id="`manager${measure.id}`"
+                @change="event => manager = event.target.value"
+                :value="manager"
+                type="text"
+                class="form-control form-control-sm"
+                :disabled="!isEditable"
+            />
 
         </div>
     </div>