1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-28 03:04:44 +02:00

fix: review fixes for v2026.5.0 release (#17350)

* fix/perf: NotificationManager in NoteCreateService

* fix: treat skip as successful return in InboxProcessorService

* chore: remove comment

* fix: simplify ReactionPicker/EmojiPicker by importing components directly

* refactor: move filename parsing to setup in MkUploaderItems

* refactor
This commit is contained in:
かっこかり
2026-05-02 10:03:34 +09:00
committed by GitHub
parent 35d6c20828
commit 93bd9d551d
6 changed files with 95 additions and 138 deletions

View File

@@ -194,7 +194,6 @@ export function popup<T extends Component>(
const id = ++popupIdCount;
const dispose = () => {
// このsetTimeoutが無いと挙動がおかしくなる(autocompleteが閉じなくなる)。Vueのバグ
nextTick(() => {
popups.value = popups.value.filter(p => p.id !== id);
});