summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/MkNote.vue
diff options
context:
space:
mode:
authorおさむのひと <46447427+samunohito@users.noreply.github.com>2023-11-06 19:26:17 +0900
committerGitHub <noreply@github.com>2023-11-06 19:26:17 +0900
commit828749be6451e2129e6b583dbb2b163cdff51f12 (patch)
treebf3ecbd38837c360eb18f294190a69981410ade4 /packages/frontend/src/components/MkNote.vue
parentenhance(frontend): improve aiscript plugin error handling (diff)
downloadmisskey-828749be6451e2129e6b583dbb2b163cdff51f12.tar.gz
misskey-828749be6451e2129e6b583dbb2b163cdff51f12.tar.bz2
misskey-828749be6451e2129e6b583dbb2b163cdff51f12.zip
fix #12266 (#12267)
ポップアップの表示後、MkNoteとMkNoteDetailedでそれぞれが持つfocusメソッドを呼び出していたのをやめた Co-authored-by: osamu <46447427+sam-osamu@users.noreply.github.com>
Diffstat (limited to 'packages/frontend/src/components/MkNote.vue')
-rw-r--r--packages/frontend/src/components/MkNote.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkNote.vue b/packages/frontend/src/components/MkNote.vue
index cd02f96bc1..8a003bdc1c 100644
--- a/packages/frontend/src/components/MkNote.vue
+++ b/packages/frontend/src/components/MkNote.vue
@@ -304,7 +304,7 @@ function renote(viaKeyboard = false) {
const { menu } = getRenoteMenu({ note: note, renoteButton, mock: props.mock });
os.popupMenu(menu, renoteButton.value, {
viaKeyboard,
- }).then(focus);
+ });
}
function reply(viaKeyboard = false): void {