diff options
| author | dakkar <dakkar@thenautilus.net> | 2024-06-21 12:49:30 +0100 |
|---|---|---|
| committer | dakkar <dakkar@thenautilus.net> | 2024-06-22 15:53:12 +0100 |
| commit | 96ce65dc620e6aedb8bd5a7d0c9e258e86c78269 (patch) | |
| tree | 68d69c60347a19f34e25569df5fe2d2cc4c67c9e /packages/frontend/src/widgets | |
| parent | replaced ti-plus (diff) | |
| download | sharkey-96ce65dc620e6aedb8bd5a7d0c9e258e86c78269.tar.gz sharkey-96ce65dc620e6aedb8bd5a7d0c9e258e86c78269.tar.bz2 sharkey-96ce65dc620e6aedb8bd5a7d0c9e258e86c78269.zip | |
replaced ti-planet ti-world-x ti-world-search
Diffstat (limited to 'packages/frontend/src/widgets')
| -rw-r--r-- | packages/frontend/src/widgets/WidgetTimeline.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/widgets/WidgetTimeline.vue b/packages/frontend/src/widgets/WidgetTimeline.vue index f6cf13290f..a82341ae8f 100644 --- a/packages/frontend/src/widgets/WidgetTimeline.vue +++ b/packages/frontend/src/widgets/WidgetTimeline.vue @@ -7,7 +7,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkContainer :showHeader="widgetProps.showHeader" :style="`height: ${widgetProps.height}px;`" :scrollable="true" data-cy-mkw-timeline class="mkw-timeline"> <template #icon> <i v-if="widgetProps.src === 'home'" class="ph-house ph-bold ph-lg"></i> - <i v-else-if="widgetProps.src === 'local'" class="ph-planet ph-bold ph-lg"></i> + <i v-else-if="widgetProps.src === 'local'" class="ti ti-planet"></i> <i v-else-if="widgetProps.src === 'social'" class="ph-rocket-launch ph-bold ph-lg"></i> <i v-else-if="widgetProps.src === 'bubble'" class="ph-drop ph-bold ph-lg"></i> <i v-else-if="widgetProps.src === 'global'" class="ph-globe-hemisphere-west ph-bold ph-lg"></i> @@ -123,7 +123,7 @@ const choose = async (ev) => { action: () => { setSrc('home'); }, }, { text: i18n.ts._timelines.local, - icon: 'ph-planet ph-bold ph-lg', + icon: 'ti ti-planet', action: () => { setSrc('local'); }, }, { text: i18n.ts._timelines.social, |