From 59bc59b5cb4c7b836fd3e28f48ea205c2853c743 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Poussard?= <tpoussard@neogeo.fr> Date: Mon, 13 Dec 2021 16:24:14 +0100 Subject: [PATCH] change error text --- src/views/feature/Feature_detail.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/feature/Feature_detail.vue b/src/views/feature/Feature_detail.vue index 9098d81f..666e8f78 100644 --- a/src/views/feature/Feature_detail.vue +++ b/src/views/feature/Feature_detail.vue @@ -474,7 +474,7 @@ export default { validateForm() { this.comment_form.comment.errors = "" if (!this.comment_form.comment.value) { - this.comment_form.comment.errors = "Ce champ est obligatoire." + this.comment_form.comment.errors = "Le commentaire ne peut pas être vide" return false; } return true; -- GitLab