From f1e41a376db060e6f74f762bd5d29c6fbcdab171 Mon Sep 17 00:00:00 2001 From: Maksim Sukharev Date: Mon, 23 Dec 2024 18:20:01 +0100 Subject: [PATCH] fix(NotificationsApp): replace 'Close' -> 'Delete' icon Signed-off-by: Maksim Sukharev --- src/Components/Notification.vue | 6 +++--- src/NotificationsApp.vue | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Components/Notification.vue b/src/Components/Notification.vue index 6628fc92..ba9ecb75 100644 --- a/src/Components/Notification.vue +++ b/src/Components/Notification.vue @@ -20,7 +20,7 @@ :aria-label="t('notifications', 'Dismiss')" @click="onDismissNotification"> @@ -84,7 +84,7 @@ import axios from '@nextcloud/axios' import NcButton from '@nextcloud/vue/dist/Components/NcButton.js' import NcRichText from '@nextcloud/vue/dist/Components/NcRichText.js' -import Close from 'vue-material-design-icons/Close.vue' +import IconDelete from 'vue-material-design-icons/Delete.vue' import Message from 'vue-material-design-icons/Message.vue' import { showError } from '@nextcloud/dialogs' import Action from './Action.vue' @@ -100,7 +100,7 @@ export default { components: { Action, NcButton, - Close, + IconDelete, Message, NcRichText, }, diff --git a/src/NotificationsApp.vue b/src/NotificationsApp.vue index 70b06bc4..5da60d4b 100644 --- a/src/NotificationsApp.vue +++ b/src/NotificationsApp.vue @@ -44,7 +44,7 @@ wide @click="onDismissAll"> {{ t('notifications', 'Dismiss all notifications') }} @@ -79,7 +79,7 @@