diff options
| author | dakkar <dakkar@thenautilus.net> | 2024-06-22 13:34:55 +0100 |
|---|---|---|
| committer | dakkar <dakkar@thenautilus.net> | 2024-06-22 15:53:32 +0100 |
| commit | df26b6501d2bcd5bb7f27fc69d9aae4bdd5d0658 (patch) | |
| tree | ca9f220f8262a2716424d4a68e67b04c8d668d4e /packages/frontend/src/ui/_common_ | |
| parent | replaced ti-arrow-back-up ti-quote ti-send (diff) | |
| download | sharkey-df26b6501d2bcd5bb7f27fc69d9aae4bdd5d0658.tar.gz sharkey-df26b6501d2bcd5bb7f27fc69d9aae4bdd5d0658.tar.bz2 sharkey-df26b6501d2bcd5bb7f27fc69d9aae4bdd5d0658.zip | |
replaced a bunch of ti-*
Diffstat (limited to 'packages/frontend/src/ui/_common_')
| -rw-r--r-- | packages/frontend/src/ui/_common_/common.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/ui/_common_/common.ts b/packages/frontend/src/ui/_common_/common.ts index dc1848a32c..41b0a7b7a0 100644 --- a/packages/frontend/src/ui/_common_/common.ts +++ b/packages/frontend/src/ui/_common_/common.ts @@ -67,13 +67,13 @@ export function openInstanceMenu(ev: MouseEvent) { }, { type: 'divider' }, { type: 'link', text: i18n.ts.ads, - icon: 'ph-flag ph-bold ph-lg', + icon: 'ti ti-ad', to: '/ads', }, ($i && ($i.isAdmin || $i.policies.canInvite) && instance.disableRegistration) ? { type: 'link', to: '/invite', text: i18n.ts.invite, - icon: 'ph-user-plus ph-bold ph-lg', + icon: 'ti ti-user-plus', } : undefined, { type: 'parent', text: i18n.ts.tools, @@ -92,7 +92,7 @@ export function openInstanceMenu(ev: MouseEvent) { }, } : undefined, (instance.tosUrl) ? { text: i18n.ts.termsOfService, - icon: 'ph-notebook ph-bold ph-lg', + icon: 'ti ti-notebook', action: () => { window.open(instance.tosUrl, '_blank', 'noopener'); }, |