From fc154a8eccd1baf6ae673fba821771b88e000e1c Mon Sep 17 00:00:00 2001 From: Azri Kahar <42867097+azrikahar@users.noreply.github.com> Date: Thu, 2 Sep 2021 06:45:56 +0800 Subject: [PATCH] fix WYSIWYG field focus event (#7756) --- .../interfaces/input-rich-text-html/input-rich-text-html.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/interfaces/input-rich-text-html/input-rich-text-html.vue b/app/src/interfaces/input-rich-text-html/input-rich-text-html.vue index 89f77f8dd6..dda5701375 100644 --- a/app/src/interfaces/input-rich-text-html/input-rich-text-html.vue +++ b/app/src/interfaces/input-rich-text-html/input-rich-text-html.vue @@ -6,8 +6,8 @@ :init="editorOptions" :disabled="disabled" model-events="change keydown blur focus paste ExecCommand SetContent" - @onFocusIn="setFocus(true)" - @onFocusOut="setFocus(false)" + @focusin="setFocus(true)" + @focusout="setFocus(false)" />