fix : correction de l'affichage de l'immatriculation sur une réception en cours + correction css étape 3 d'une réception

This commit is contained in:
2026-01-30 11:22:15 +01:00
parent c0f113547e
commit 89e4bc5087
2 changed files with 5 additions and 4 deletions

View File

@@ -421,14 +421,15 @@ watch(
if (!isLiotCarrier.value) {
return
}
if (isHydrating.value) {
return
}
const selected = filteredVehicles.value.find(
(vehicle) => String(vehicle.id) === form.vehicleId
)
if (selected) {
form.licensePlate = selected.plate
allowAnyLicensePlate.value = false
} else if (form.vehicleId === '') {
form.licensePlate = ''
}
}
)