Skip to content

Commit

Permalink
Merge pull request #42709 from nextcloud/enh/42694/put-li-into-ul
Browse files Browse the repository at this point in the history
`SharingEntrySimple` needs `ul` or `ol` around it
  • Loading branch information
szaimen authored Jan 11, 2024
2 parents f6d850e + 9687f8d commit 53817cb
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 14 deletions.
16 changes: 9 additions & 7 deletions apps/files_sharing/src/views/SharingTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,15 @@
<!-- shares content -->
<div class="sharingTab__content">
<!-- shared with me information -->
<SharingEntrySimple v-if="isSharedWithMe" v-bind="sharedWithMe" class="sharing-entry__reshare">
<template #avatar>
<NcAvatar :user="sharedWithMe.user"
:display-name="sharedWithMe.displayName"
class="sharing-entry__avatar" />
</template>
</SharingEntrySimple>
<ul>
<SharingEntrySimple v-if="isSharedWithMe" v-bind="sharedWithMe" class="sharing-entry__reshare">
<template #avatar>
<NcAvatar :user="sharedWithMe.user"
:display-name="sharedWithMe.displayName"
class="sharing-entry__avatar" />
</template>
</SharingEntrySimple>
</ul>

<!-- add new share input -->
<SharingInput v-if="!loading"
Expand Down
3 changes: 3 additions & 0 deletions dist/303-303.js

Large diffs are not rendered by default.

File renamed without changes.
1 change: 1 addition & 0 deletions dist/303-303.js.map

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions dist/8473-8473.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/8473-8473.js.map

This file was deleted.

4 changes: 2 additions & 2 deletions dist/files_sharing-files_sharing_tab.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/files_sharing-files_sharing_tab.js.map

Large diffs are not rendered by default.

0 comments on commit 53817cb

Please sign in to comment.