From ece4efcefedc3ef095f8683db868d64645811893 Mon Sep 17 00:00:00 2001 From: かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> Date: Thu, 8 Jan 2026 21:08:27 +0900 Subject: fix(frontend): mfmFunctionPickerを使用して挿入する際のハンドリングを改善 (#17018) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix(frontend): mfmFunctionPickerを使用して絵文字を挿入する際のハンドリングを改善 * fix * Update MkPostForm.vue * Update Changelog --------- Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com> --- packages/frontend/src/os.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'packages/frontend/src/os.ts') diff --git a/packages/frontend/src/os.ts b/packages/frontend/src/os.ts index c1390e8274..3fb204c2b2 100644 --- a/packages/frontend/src/os.ts +++ b/packages/frontend/src/os.ts @@ -654,6 +654,7 @@ export function popupMenu(items: (MenuItem | null)[], anchorElement?: HTMLElemen align?: string; width?: number; onClosing?: () => void; + onClosed?: () => void; }): Promise { if (!(anchorElement instanceof HTMLElement)) { anchorElement = null; @@ -672,6 +673,7 @@ export function popupMenu(items: (MenuItem | null)[], anchorElement?: HTMLElemen resolve(); dispose(); returnFocusTo = null; + options?.onClosed?.(); }, closing: () => { options?.onClosing?.(); -- cgit v1.2.3-freya