forked from FoundKeyGang/FoundKey
fix(client): リアクションツールチップ、Renoteツールチップのユーザーの並び順を修正
This commit is contained in:
parent
8e04bd12cf
commit
9604ad3dc1
3 changed files with 3 additions and 6 deletions
|
@ -13,6 +13,7 @@
|
|||
|
||||
### Bugfixes
|
||||
- クライアント: ログインにおいてパスワードが誤っている際のエラーメッセージが正しく表示されない問題を修正
|
||||
- クライアント: リアクションツールチップ、Renoteツールチップのユーザーの並び順を修正
|
||||
|
||||
### Changes
|
||||
- クライアント: ノートにモデレーターバッジを表示するのを廃止
|
||||
|
|
|
@ -97,9 +97,7 @@ export default defineComponent({
|
|||
limit: 11
|
||||
});
|
||||
|
||||
const users = reactions
|
||||
.sort((a, b) => new Date(a.createdAt).getTime() - new Date(b.createdAt).getTime())
|
||||
.map(x => x.user);
|
||||
const users = reactions.map(x => x.user);
|
||||
|
||||
os.popup(XDetails, {
|
||||
showing,
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue