1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-26 16:04:24 +02:00

fix(client): リアクションツールチップ、Renoteツールチップのユーザーの並び順を修正

This commit is contained in:
syuilo
2021-11-21 14:09:41 +09:00
parent 8e04bd12cf
commit 9604ad3dc1
3 changed files with 3 additions and 6 deletions

View File

@@ -48,9 +48,7 @@ export default defineComponent({
limit: 11
});
const users = renotes
.sort((a, b) => new Date(a.createdAt).getTime() - new Date(b.createdAt).getTime())
.map(x => x.user);
const users = renotes.map(x => x.user);
if (users.length < 1) return;