@@ -238,13 +238,13 @@ export default {
checkErrors(e) {
this.errors = [];
if (!this.person.lastName) {
- this.errors.push("Le nom ne doit pas être vide.");
+ this.errors.push("Le nom ne doit pas être vide.");
}
if (!this.person.firstName) {
- this.errors.push("Le prénom ne doit pas être vide.");
+ this.errors.push("Le prénom ne doit pas être vide.");
}
if (!this.person.gender) {
- this.errors.push("Le genre doit être renseigné");
+ this.errors.push("Le genre doit être renseigné");
}
},
loadData() {
diff --git a/src/Bundle/ChillThirdPartyBundle/Resources/public/vuejs/_components/OnTheFly/ThirdParty.vue b/src/Bundle/ChillThirdPartyBundle/Resources/public/vuejs/_components/OnTheFly/ThirdParty.vue
index 9ed4481dd..c61d98aea 100644
--- a/src/Bundle/ChillThirdPartyBundle/Resources/public/vuejs/_components/OnTheFly/ThirdParty.vue
+++ b/src/Bundle/ChillThirdPartyBundle/Resources/public/vuejs/_components/OnTheFly/ThirdParty.vue
@@ -66,14 +66,14 @@