From 01b5ccfdc63f3449429e2d9ef9ce822f84e29641 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 9 Feb 2020 18:52:53 +0900 Subject: [PATCH] Fix #5891 --- src/client/components/note.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/client/components/note.vue b/src/client/components/note.vue index 0e9272ec3..7ca402be0 100644 --- a/src/client/components/note.vue +++ b/src/client/components/note.vue @@ -19,7 +19,7 @@
- + @@ -558,7 +558,7 @@ export default Vue.extend({ }).then(this.focus); }, - showRenoteMenu(ev) { + showRenoteMenu(viaKeyboard = false) { if (!this.$store.getters.isSignedIn || (this.$store.state.i.id !== this.note.userId)) return; this.$root.menu({ items: [{ @@ -571,7 +571,7 @@ export default Vue.extend({ Vue.set(this.note, 'deletedAt', new Date()); } }], - source: ev.currentTarget || ev.target, + source: this.$refs.renoteTime, viaKeyboard: viaKeyboard }); },