diff options
| author | dakkar <dakkar@thenautilus.net> | 2024-06-22 14:07:02 +0100 |
|---|---|---|
| committer | dakkar <dakkar@thenautilus.net> | 2024-06-22 15:53:36 +0100 |
| commit | 9f8873574cbb709e42c737de4d32c4fa26cf9e2f (patch) | |
| tree | 046fcb88b35e4fefb8a4459cc9743921bf25ea40 /packages/frontend/src/widgets | |
| parent | replaced another bunch, and some fixes (diff) | |
| download | sharkey-9f8873574cbb709e42c737de4d32c4fa26cf9e2f.tar.gz sharkey-9f8873574cbb709e42c737de4d32c4fa26cf9e2f.tar.bz2 sharkey-9f8873574cbb709e42c737de4d32c4fa26cf9e2f.zip | |
replaced tool pencil bell refresh
Diffstat (limited to 'packages/frontend/src/widgets')
| -rw-r--r-- | packages/frontend/src/widgets/WidgetBirthdayFollowings.vue | 2 | ||||
| -rw-r--r-- | packages/frontend/src/widgets/WidgetNotifications.vue | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/widgets/WidgetBirthdayFollowings.vue b/packages/frontend/src/widgets/WidgetBirthdayFollowings.vue index e22697ca68..e4ac9673dd 100644 --- a/packages/frontend/src/widgets/WidgetBirthdayFollowings.vue +++ b/packages/frontend/src/widgets/WidgetBirthdayFollowings.vue @@ -7,7 +7,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkContainer :showHeader="widgetProps.showHeader" class="mkw-bdayfollowings"> <template #icon><i class="ph-cake ph-bold ph-lg"></i></template> <template #header>{{ i18n.ts._widgets.birthdayFollowings }}</template> - <template #func="{ buttonStyleClass }"><button class="_button" :class="buttonStyleClass" @click="actualFetch()"><i class="ph-arrows-clockwise ph-bold ph-lg"></i></button></template> + <template #func="{ buttonStyleClass }"><button class="_button" :class="buttonStyleClass" @click="actualFetch()"><i class="ti ti-refresh"></i></button></template> <div :class="$style.bdayFRoot"> <MkLoading v-if="fetching"/> diff --git a/packages/frontend/src/widgets/WidgetNotifications.vue b/packages/frontend/src/widgets/WidgetNotifications.vue index 7acff806fc..4b3265dab7 100644 --- a/packages/frontend/src/widgets/WidgetNotifications.vue +++ b/packages/frontend/src/widgets/WidgetNotifications.vue @@ -5,7 +5,7 @@ SPDX-License-Identifier: AGPL-3.0-only <template> <MkContainer :style="`height: ${widgetProps.height}px;`" :showHeader="widgetProps.showHeader" :scrollable="true" data-cy-mkw-notifications class="mkw-notifications"> - <template #icon><i class="ph-bell ph-bold ph-lg"></i></template> + <template #icon><i class="ti ti-bell"></i></template> <template #header>{{ i18n.ts.notifications }}</template> <template #func="{ buttonStyleClass }"><button class="_button" :class="buttonStyleClass" @click="configureNotification()"><i class="ti ti-settings"></i></button></template> |