From aa88164c169e60a279e10f3b7c8653687b75033b Mon Sep 17 00:00:00 2001 From: Simon H <5968653+dummdidumm@users.noreply.github.com> Date: Wed, 15 Mar 2023 16:10:01 +0100 Subject: [PATCH] fix --- src/compiler/compile/compiler_warnings.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compiler/compile/compiler_warnings.ts b/src/compiler/compile/compiler_warnings.ts index d737d2f902..f90720ec59 100644 --- a/src/compiler/compile/compiler_warnings.ts +++ b/src/compiler/compile/compiler_warnings.ts @@ -213,9 +213,9 @@ export default { invalid_rest_eachblock_binding: (rest_element_name: string) => ({ code: 'invalid-rest-eachblock-binding', message: `...${rest_element_name} operator will create a new object and binding propagation with original object will not work` - }, + }), avoid_mouse_events_on_document: { code: 'avoid-mouse-events-on-document', message: 'Mouse enter/leave events on the document are not supported in all browsers and should be avoided' - }) + } };