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/ui/deck | |
| 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/ui/deck')
| -rw-r--r-- | packages/frontend/src/ui/deck/column.vue | 2 | ||||
| -rw-r--r-- | packages/frontend/src/ui/deck/notifications-column.vue | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/ui/deck/column.vue b/packages/frontend/src/ui/deck/column.vue index 0e870c7a27..fe9e0f247e 100644 --- a/packages/frontend/src/ui/deck/column.vue +++ b/packages/frontend/src/ui/deck/column.vue @@ -186,7 +186,7 @@ function getMenu() { if (props.refresher) { items = [{ - icon: 'ph-arrows-counter-clockwise ph-bold ph-lg', + icon: 'ti ti-refresh', text: i18n.ts.reload, action: () => { if (props.refresher) { diff --git a/packages/frontend/src/ui/deck/notifications-column.vue b/packages/frontend/src/ui/deck/notifications-column.vue index 789e04a695..451cc58791 100644 --- a/packages/frontend/src/ui/deck/notifications-column.vue +++ b/packages/frontend/src/ui/deck/notifications-column.vue @@ -5,7 +5,7 @@ SPDX-License-Identifier: AGPL-3.0-only <template> <XColumn :column="column" :isStacked="isStacked" :menu="menu" :refresher="() => notificationsComponent.reload()"> - <template #header><i class="ph-bell ph-bold ph-lg" style="margin-right: 8px;"></i>{{ column.name }}</template> + <template #header><i class="ti ti-bell" style="margin-right: 8px;"></i>{{ column.name }}</template> <XNotifications ref="notificationsComponent" :excludeTypes="props.column.excludeTypes"/> </XColumn> |