Skip to content

Commit

Permalink
Rename status column to info column, add share role icon (#11166)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexAndBear authored Jul 10, 2024
1 parent 1faae72 commit 195ab85
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Enhancement: Add share role icon to shared with me table

We've added the respective share role icon with a tooltip that contains the share role name to each share column,
so the user knows which permission they have in a share.

https://github.com/owncloud/web/pull/11166
https://github.com/owncloud/web/issues/11101
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,17 @@
:key="resource.getDomSelector()"
class="oc-text-nowrap oc-flex oc-flex-middle oc-flex-right"
>
<oc-icon
v-oc-tooltip="$gettext(resource.shareRoles[0].displayName)"
:name="resource.shareRoles[0].icon"
fill-type="line"
/>
<oc-icon
v-if="resource.syncEnabled"
v-oc-tooltip="$gettext('Synced with your devices')"
:accessible-label="$gettext('Synced with your devices')"
name="loop-right"
class="sync-enabled"
class="sync-enabled oc-ml-s"
/>
</div>
</template>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ export default defineComponent({
},
{
name: 'syncEnabled',
title: this.$gettext('Status'),
title: this.$gettext('Info'),
type: 'slot',
alignH: 'right',
wrap: 'nowrap',
Expand Down

0 comments on commit 195ab85

Please sign in to comment.