diff options
| author | dakkar <dakkar@thenautilus.net> | 2024-06-21 14:30:40 +0100 |
|---|---|---|
| committer | dakkar <dakkar@thenautilus.net> | 2024-06-22 15:53:12 +0100 |
| commit | b4e3217cc20c42d3a16a062380c0b3f3c8c5f623 (patch) | |
| tree | 936e6eb81b6bb44f1360e3808d08376686a597bb /packages/frontend/src/scripts/get-note-menu.ts | |
| parent | replaced ti-arrow-right (diff) | |
| download | sharkey-b4e3217cc20c42d3a16a062380c0b3f3c8c5f623.tar.gz sharkey-b4e3217cc20c42d3a16a062380c0b3f3c8c5f623.tar.bz2 sharkey-b4e3217cc20c42d3a16a062380c0b3f3c8c5f623.zip | |
replaced ti-pin
Diffstat (limited to 'packages/frontend/src/scripts/get-note-menu.ts')
| -rw-r--r-- | packages/frontend/src/scripts/get-note-menu.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/scripts/get-note-menu.ts b/packages/frontend/src/scripts/get-note-menu.ts index 09225a030d..c3fa623b00 100644 --- a/packages/frontend/src/scripts/get-note-menu.ts +++ b/packages/frontend/src/scripts/get-note-menu.ts @@ -381,7 +381,7 @@ export function getNoteMenu(props: { text: i18n.ts.unpin, action: () => togglePin(false), } : { - icon: 'ph-push-pin ph-bold ph-lg', + icon: 'ti ti-pin', text: i18n.ts.pin, action: () => togglePin(true), } : undefined, @@ -434,7 +434,7 @@ export function getNoteMenu(props: { }); } else { channelChildMenu.push({ - icon: 'ph-push-pin ph-bold ph-lg', + icon: 'ti ti-pin', text: i18n.ts.pin, action: () => os.apiWithDialog('channels/update', { channelId: appearNote.channel!.id, |