From 66bd63403b46ea1c9dfbe796d728cbce94ae35d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Wed, 28 May 2025 16:31:59 +0200 Subject: [PATCH] Update event binding in CKEditor5 component template Replaces the deprecated `@input` event with the `@update:modelValue` event to ensure compatibility with Vue 3. This improves handling of two-way binding for the `v-model` directive. --- .../ChillMainBundle/Resources/public/module/ckeditor5/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bundle/ChillMainBundle/Resources/public/module/ckeditor5/index.ts b/src/Bundle/ChillMainBundle/Resources/public/module/ckeditor5/index.ts index 25ab1f55e..783c0acfa 100644 --- a/src/Bundle/ChillMainBundle/Resources/public/module/ckeditor5/index.ts +++ b/src/Bundle/ChillMainBundle/Resources/public/module/ckeditor5/index.ts @@ -15,7 +15,7 @@ ckeditorFields.forEach((field: HTMLTextAreaElement): void => { createApp({ components: { CommentEditor }, - template: ``, + template: ``, data() { return { content,