Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change share icons to collaborators #3116

Merged
merged 1 commit into from
Mar 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<div class="uk-text-meta uk-text-nowrap uk-width-small" v-text="formDateFromNow(item.shareTime)" />
</template>
<template #noContentMessage>
<no-content-message icon="share">
<no-content-message icon="group">
<template #message>
<span v-if="$_isSharedWithMe" v-translate>You are currently not collaborating on other people's resources.</span>
<span v-else v-translate>You are currently not collaborating on any of your resources with other people.</span>
Expand Down
6 changes: 3 additions & 3 deletions apps/files/src/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const appInfo = {
return false
},
quickAccess: {
icon: 'share',
icon: 'group',
ariaLabel: $gettext('Collaborators')
}
}, {
Expand Down Expand Up @@ -88,15 +88,15 @@ const navItems = [
},
{
name: $gettext('Shared with me'),
iconMaterial: 'share',
iconMaterial: 'group',
route: {
name: 'files-shared-with-me',
path: `/${appInfo.id}/shared-with-me`
}
},
{
name: $gettext('Shared with others'),
iconMaterial: 'share',
iconMaterial: 'group',
route: {
name: 'files-shared-with-others',
path: `/${appInfo.id}/shared-with-others`
Expand Down
6 changes: 6 additions & 0 deletions changelog/unreleased/3116
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Bugfix: Changed share icons to collaborators icons

Adjust icon in files app navigation bar and also in the file actions
dropdown to use the group icon.

https://github.com/owncloud/phoenix/pull/3116