Skip to content
Snippets Groups Projects
Commit 9604ad3d authored by syuilo's avatar syuilo
Browse files

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

parent 8e04bd12
No related branches found
No related tags found
No related merge requests found
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
### Bugfixes ### Bugfixes
- クライアント: ログインにおいてパスワードが誤っている際のエラーメッセージが正しく表示されない問題を修正 - クライアント: ログインにおいてパスワードが誤っている際のエラーメッセージが正しく表示されない問題を修正
- クライアント: リアクションツールチップ、Renoteツールチップのユーザーの並び順を修正
### Changes ### Changes
- クライアント: ノートにモデレーターバッジを表示するのを廃止 - クライアント: ノートにモデレーターバッジを表示するのを廃止
......
...@@ -97,9 +97,7 @@ export default defineComponent({ ...@@ -97,9 +97,7 @@ export default defineComponent({
limit: 11 limit: 11
}); });
const users = reactions const users = reactions.map(x => x.user);
.sort((a, b) => new Date(a.createdAt).getTime() - new Date(b.createdAt).getTime())
.map(x => x.user);
os.popup(XDetails, { os.popup(XDetails, {
showing, showing,
......
...@@ -48,9 +48,7 @@ export default defineComponent({ ...@@ -48,9 +48,7 @@ export default defineComponent({
limit: 11 limit: 11
}); });
const users = renotes const users = renotes.map(x => x.user);
.sort((a, b) => new Date(a.createdAt).getTime() - new Date(b.createdAt).getTime())
.map(x => x.user);
if (users.length < 1) return; if (users.length < 1) return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment