From d603f6a08727f97e1fef483ede152b79ee7c4b74 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 28 Feb 2020 11:34:37 +0100 Subject: [PATCH] Change share icons to collaborators Adjust icon in files app navigation bar and also in the file actions dropdown to use the group icon. --- apps/files/src/default.js | 6 +++--- changelog/unreleased/3858 | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/apps/files/src/default.js b/apps/files/src/default.js index 1b60a33905b..87472e7a35e 100644 --- a/apps/files/src/default.js +++ b/apps/files/src/default.js @@ -55,7 +55,7 @@ const appInfo = { return false }, quickAccess: { - icon: 'share', + icon: 'group', ariaLabel: $gettext('Collaborators') } }, { @@ -88,7 +88,7 @@ const navItems = [ }, { name: $gettext('Shared with me'), - iconMaterial: 'share', + iconMaterial: 'group', route: { name: 'files-shared-with-me', path: `/${appInfo.id}/shared-with-me` @@ -96,7 +96,7 @@ const navItems = [ }, { name: $gettext('Shared with others'), - iconMaterial: 'share', + iconMaterial: 'group', route: { name: 'files-shared-with-others', path: `/${appInfo.id}/shared-with-others` diff --git a/changelog/unreleased/3858 b/changelog/unreleased/3858 index 73b1a8fc8d2..7669f2aee53 100644 --- a/changelog/unreleased/3858 +++ b/changelog/unreleased/3858 @@ -1,5 +1,7 @@ Change: Moved sidebar navigation under top bar We've adjusted the position of the sidebar navigation to be under the top bar. +The icons in the sidebar navigation and the file actions dropdown for sharing is now changed to the group icon (people). -https://github.com/owncloud/phoenix/pull/3077 \ No newline at end of file +https://github.com/owncloud/phoenix/pull/3077 +https://github.com/owncloud/phoenix/pull/3116