aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorSimon L <szaimen@e.mail.de>2024-01-11 18:21:39 +0100
committerGitHub <noreply@github.com>2024-01-11 18:21:39 +0100
commit53817cb7799e4f1d0005b05998c02c211ad11a91 (patch)
tree0ca54bb2ee37739bf7fb9bad11b24eaa3bc7a025 /apps
parentf6d850ece8392390862216888f5769afdf29b99a (diff)
parent9687f8d8c9867ae898392a7b95ce492320aaa076 (diff)
downloadnextcloud-server-53817cb7799e4f1d0005b05998c02c211ad11a91.tar.gz
nextcloud-server-53817cb7799e4f1d0005b05998c02c211ad11a91.zip
Merge pull request #42709 from nextcloud/enh/42694/put-li-into-ul
`SharingEntrySimple` needs `ul` or `ol` around it
Diffstat (limited to 'apps')
-rw-r--r--apps/files_sharing/src/views/SharingTab.vue16
1 files changed, 9 insertions, 7 deletions
diff --git a/apps/files_sharing/src/views/SharingTab.vue b/apps/files_sharing/src/views/SharingTab.vue
index 19033bf9184..ce21d3453f1 100644
--- a/apps/files_sharing/src/views/SharingTab.vue
+++ b/apps/files_sharing/src/views/SharingTab.vue
@@ -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"