summaryrefslogtreecommitdiff
path: root/packages/frontend/src/scripts
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2024-06-22 14:07:02 +0100
committerdakkar <dakkar@thenautilus.net>2024-06-22 15:53:36 +0100
commit9f8873574cbb709e42c737de4d32c4fa26cf9e2f (patch)
tree046fcb88b35e4fefb8a4459cc9743921bf25ea40 /packages/frontend/src/scripts
parentreplaced another bunch, and some fixes (diff)
downloadsharkey-9f8873574cbb709e42c737de4d32c4fa26cf9e2f.tar.gz
sharkey-9f8873574cbb709e42c737de4d32c4fa26cf9e2f.tar.bz2
sharkey-9f8873574cbb709e42c737de4d32c4fa26cf9e2f.zip
replaced tool pencil bell refresh
Diffstat (limited to 'packages/frontend/src/scripts')
-rw-r--r--packages/frontend/src/scripts/get-user-menu.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/scripts/get-user-menu.ts b/packages/frontend/src/scripts/get-user-menu.ts
index 906a3f999c..560ebf0cca 100644
--- a/packages/frontend/src/scripts/get-user-menu.ts
+++ b/packages/frontend/src/scripts/get-user-menu.ts
@@ -309,7 +309,7 @@ export function getUserMenu(user: Misskey.entities.UserDetailed, router: IRouter
text: user.withReplies ? i18n.ts.hideRepliesToOthersInTimeline : i18n.ts.showRepliesToOthersInTimeline,
action: toggleWithReplies,
}, {
- icon: user.notify === 'none' ? 'ph-bell ph-bold ph-lg' : 'ph-bell ph-bold ph-lg-off',
+ icon: user.notify === 'none' ? 'ti ti-bell' : 'ti ti-bell-off',
text: user.notify === 'none' ? i18n.ts.notifyNotes : i18n.ts.unnotifyNotes,
action: toggleNotify,
}]);
@@ -346,7 +346,7 @@ export function getUserMenu(user: Misskey.entities.UserDetailed, router: IRouter
if (user.host !== null) {
menu = menu.concat([{ type: 'divider' }, {
- icon: 'ph-arrows-counter-clockwise ph-bold ph-lg',
+ icon: 'ti ti-refresh',
text: i18n.ts.updateRemoteUser,
action: userInfoUpdate,
}]);