fix: routeForm #595

Merged
alexm merged 3 commits from 7129-hotfix into master 2024-08-06 10:19:10 +00:00
1 changed files with 4 additions and 2 deletions
Showing only changes of commit 7e7fddb86b - Show all commits

View File

@ -145,7 +145,7 @@ const onSave = (data, response) => {
:rules="[
(val) =>
val < maxDistance ||
t('Distance must be lesser than') + ` ${maxDistance}`,
t('Distance must be lesser than', { maxDistance }),
]"
clearable
type="number"
@ -194,5 +194,7 @@ es:
Description: Descripción
Is served: Se ha servido
Created: Creado
Distance must be lesser than: La distancia debe ser inferior a
Distance must be lesser than: La distancia debe ser inferior a {maxDistance}
en:
Distance must be lesser than: Distance must be lesser than {maxDistance}
</i18n>