replaced ti-whirl

This commit is contained in:
dakkar 2024-06-22 13:38:56 +01:00
parent df26b6501d
commit 712682ea47
10 changed files with 13 additions and 14 deletions

View file

@ -184,7 +184,7 @@ const headerTabs = computed(() => [{
}, {
key: 'federation',
title: i18n.ts.federation,
icon: 'ph-globe-hemisphere-west ph-bold ph-lg',
icon: 'ti ti-whirl',
}, {
key: 'charts',
title: i18n.ts.charts,

View file

@ -117,7 +117,7 @@ const headerTabs = computed(() => []);
definePageMetadata(() => ({
title: i18n.ts.federation,
icon: 'ph-globe-hemisphere-west ph-bold ph-lg',
icon: 'ti ti-whirl',
}));
</script>

View file

@ -142,7 +142,7 @@ const menuDef = computed(() => [{
to: '/admin/avatar-decorations',
active: currentPage.value?.route.name === 'avatarDecorations',
}, {
icon: 'ph-globe-hemisphere-west ph-bold ph-lg',
icon: 'ti ti-whirl',
text: i18n.ts.federation,
to: '/admin/federation',
active: currentPage.value?.route.name === 'federation',

View file

@ -313,7 +313,7 @@ const headerTabs = computed(() => [...(defaultStore.reactiveState.pinnedUserList
}] : []), ...(isGlobalTimelineAvailable ? [{
key: 'global',
title: i18n.ts._timelines.global,
icon: 'ph-globe-hemisphere-west ph-bold ph-lg',
icon: 'ti ti-whirl',
iconOnly: true,
}] : []), {
icon: 'ti ti-list',
@ -342,14 +342,14 @@ const headerTabsWhenNotLogin = computed(() => [
...(isGlobalTimelineAvailable ? [{
key: 'global',
title: i18n.ts._timelines.global,
icon: 'ph-globe-hemisphere-west ph-bold ph-lg',
icon: 'ti ti-whirl',
iconOnly: true,
}] : []),
] as Tab[]);
definePageMetadata(() => ({
title: i18n.ts.timeline,
icon: src.value === 'local' ? 'ti ti-planet' : src.value === 'social' ? 'ph-rocket-launch ph-bold ph-lg' : src.value === 'global' ? 'ti ti-world' : src.value === 'bubble' ? 'ph-drop ph-bold ph-lg' : 'ti ti-home',
icon: src.value === 'local' ? 'ti ti-planet' : src.value === 'social' ? 'ph-rocket-launch ph-bold ph-lg' : src.value === 'global' ? 'ti ti-whirl' : src.value === 'bubble' ? 'ph-drop ph-bold ph-lg' : 'ti ti-home',
}));
</script>