summaryrefslogtreecommitdiff
path: root/packages/frontend/src/scripts
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2024-06-22 11:55:11 +0100
committerdakkar <dakkar@thenautilus.net>2024-06-22 15:53:13 +0100
commitacddf7e1496ba7e7b67e14adf5c237262e255895 (patch)
tree3a9066fdf1e6cedfefacd442190fee1972f981ac /packages/frontend/src/scripts
parentreplaced ti-player-* and ti-volume-* (diff)
downloadsharkey-acddf7e1496ba7e7b67e14adf5c237262e255895.tar.gz
sharkey-acddf7e1496ba7e7b67e14adf5c237262e255895.tar.bz2
sharkey-acddf7e1496ba7e7b67e14adf5c237262e255895.zip
replaced ti-rocket ti-repeat ti-repeat-off
Diffstat (limited to 'packages/frontend/src/scripts')
-rw-r--r--packages/frontend/src/scripts/get-note-menu.ts6
-rw-r--r--packages/frontend/src/scripts/get-user-menu.ts2
2 files changed, 4 insertions, 4 deletions
diff --git a/packages/frontend/src/scripts/get-note-menu.ts b/packages/frontend/src/scripts/get-note-menu.ts
index ca3f8b62a3..23e40dad69 100644
--- a/packages/frontend/src/scripts/get-note-menu.ts
+++ b/packages/frontend/src/scripts/get-note-menu.ts
@@ -557,7 +557,7 @@ export function getRenoteMenu(props: {
if (appearNote.channel) {
channelRenoteItems.push(...[{
text: i18n.ts.inChannelRenote,
- icon: 'ph ph-repeat',
+ icon: 'ti ti-repeat',
action: () => {
const el = props.renoteButton.value;
if (el) {
@@ -593,7 +593,7 @@ export function getRenoteMenu(props: {
if (!appearNote.channel || appearNote.channel.allowRenoteToExternal) {
normalRenoteItems.push(...[{
text: i18n.ts.renote,
- icon: 'ph ph-repeat',
+ icon: 'ti ti-repeat',
action: () => {
const el = props.renoteButton.value;
if (el) {
@@ -634,7 +634,7 @@ export function getRenoteMenu(props: {
normalExternalChannelRenoteItems.push({
type: 'parent',
- icon: 'ph ph-repeat',
+ icon: 'ti ti-repeat',
text: appearNote.channel ? i18n.ts.renoteToOtherChannel : i18n.ts.renoteToChannel,
children: async () => {
const channels = await favoritedChannelsCache.fetch();
diff --git a/packages/frontend/src/scripts/get-user-menu.ts b/packages/frontend/src/scripts/get-user-menu.ts
index 10bb3c216c..e485e610fd 100644
--- a/packages/frontend/src/scripts/get-user-menu.ts
+++ b/packages/frontend/src/scripts/get-user-menu.ts
@@ -320,7 +320,7 @@ export function getUserMenu(user: Misskey.entities.UserDetailed, router: IRouter
text: user.isMuted ? i18n.ts.unmute : i18n.ts.mute,
action: toggleMute,
}, {
- icon: user.isRenoteMuted ? 'ph-repeat ph-bold ph-lg' : 'ph-repeat ph-bold ph-lg-off',
+ icon: user.isRenoteMuted ? 'ti ti-repeat' : 'ti ti-repeat-off',
text: user.isRenoteMuted ? i18n.ts.renoteUnmute : i18n.ts.renoteMute,
action: toggleRenoteMute,
}, {