diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2024-02-01 20:05:45 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-01 20:05:45 +0900 |
| commit | b0a38c0caee2218b9e9f3b689f02ab22cc76a12c (patch) | |
| tree | bee07d1bdffd119d1356aedb2cf2c074924d8e96 /packages/frontend/src/pages/user | |
| parent | chore(deps): bump codecov/codecov-action from 3 to 4 (#13125) (diff) | |
| download | misskey-b0a38c0caee2218b9e9f3b689f02ab22cc76a12c.tar.gz misskey-b0a38c0caee2218b9e9f3b689f02ab22cc76a12c.tar.bz2 misskey-b0a38c0caee2218b9e9f3b689f02ab22cc76a12c.zip | |
fix: Hide reactions of all remote users / feat: moderators can see reactions of all users (#13128)
* fix: Hide reactions of all remote users
https://github.com/misskey-dev/misskey/issues/12964
* feat: Moderators can see reactions of all users
https://github.com/misskey-dev/misskey/issues/13127
* modify CHANGELOG.md
* fix iAmModerator
Diffstat (limited to 'packages/frontend/src/pages/user')
| -rw-r--r-- | packages/frontend/src/pages/user/index.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/user/index.vue b/packages/frontend/src/pages/user/index.vue index 603f1bef33..e3fbc4f411 100644 --- a/packages/frontend/src/pages/user/index.vue +++ b/packages/frontend/src/pages/user/index.vue @@ -96,7 +96,7 @@ const headerTabs = computed(() => user.value ? [{ key: 'achievements', title: i18n.ts.achievements, icon: 'ti ti-medal', -}] : []), ...($i && ($i.id === user.value.id)) || user.value.publicReactions ? [{ +}] : []), ...($i && ($i.id === user.value.id || $i.isAdmin || $i.isModerator)) || user.value.publicReactions ? [{ key: 'reactions', title: i18n.ts.reaction, icon: 'ti ti-mood-happy', |