From ef0c1bd11ce1a93b43ab71e4645721fbfc8d563f Mon Sep 17 00:00:00 2001 From: Maksim Sukharev Date: Fri, 22 Aug 2025 15:23:22 +0200 Subject: [PATCH] fix(Sidebar): change icons to outline Signed-off-by: Maksim Sukharev --- apps/files/src/views/Sidebar.vue | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/apps/files/src/views/Sidebar.vue b/apps/files/src/views/Sidebar.vue index 40a16d42b42..a977cd64f5e 100644 --- a/apps/files/src/views/Sidebar.vue +++ b/apps/files/src/views/Sidebar.vue @@ -51,7 +51,7 @@ {{ fileInfo.isFavourited ? t('files', 'Remove from favorites') : t('files', 'Add to favorites') }} @@ -59,8 +59,10 @@ And inject themselves here. --> + {{ t('files', 'Tags') }} @@ -101,7 +103,7 @@ import { fetchNode } from '../services/WebdavClient.ts' import { generateUrl } from '@nextcloud/router' import { getCapabilities } from '@nextcloud/capabilities' import { getCurrentUser } from '@nextcloud/auth' -import { mdiStar, mdiStarOutline } from '@mdi/js' +import { mdiStar, mdiStarOutline, mdiTagMultipleOutline } from '@mdi/js' import { ShareType } from '@nextcloud/sharing' import { showError } from '@nextcloud/dialogs' import $ from 'jquery' @@ -144,6 +146,7 @@ export default defineComponent({ mdiStar, mdiStarOutline, + mdiTagMultipleOutline, } },