replaced tool pencil bell refresh

This commit is contained in:
dakkar 2024-06-22 14:07:02 +01:00
parent b675c66d70
commit 9f8873574c
23 changed files with 33 additions and 25 deletions

View file

@ -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) {

View file

@ -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>