From 8ae48015b178fd6f404e9fe3d6a755d6157cd193 Mon Sep 17 00:00:00 2001 From: Boris Waaub Date: Wed, 4 Feb 2026 17:04:57 +0100 Subject: [PATCH] =?UTF-8?q?Correction=20du=20type=20dans=20la=20d=C3=A9fin?= =?UTF-8?q?ition=20du=20mod=C3=A8le=20pour=20le=20champ=20de=20valeur=20da?= =?UTF-8?q?ns=20CommentEditor.vue?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../public/vuejs/_components/CommentEditor/CommentEditor.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bundle/ChillMainBundle/Resources/public/vuejs/_components/CommentEditor/CommentEditor.vue b/src/Bundle/ChillMainBundle/Resources/public/vuejs/_components/CommentEditor/CommentEditor.vue index baa8fd216..f9b75510a 100644 --- a/src/Bundle/ChillMainBundle/Resources/public/vuejs/_components/CommentEditor/CommentEditor.vue +++ b/src/Bundle/ChillMainBundle/Resources/public/vuejs/_components/CommentEditor/CommentEditor.vue @@ -39,7 +39,7 @@ enum EditorKind { const EDITOR_MODE_KEY = "editorMode"; const kind = ref(EditorKind.SIMPLE); -const value = defineModel({ required: true }); +const value = defineModel({ required: true, type: String }); const isSimple = computed(() => kind.value === EditorKind.SIMPLE);