aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing
diff options
context:
space:
mode:
authorSimon L <szaimen@e.mail.de>2024-01-11 14:28:32 +0100
committerSimon L <szaimen@e.mail.de>2024-01-11 15:10:11 +0100
commit420b3d085e3cb8e8f2ce317121904a2dfc536a0c (patch)
tree647c5e337dff501ea0b5f306b297471810b113bf /apps/files_sharing
parentd128b4a04b1d81881e19b93f8a3dd37b729ab91a (diff)
downloadnextcloud-server-420b3d085e3cb8e8f2ce317121904a2dfc536a0c.tar.gz
nextcloud-server-420b3d085e3cb8e8f2ce317121904a2dfc536a0c.zip
sharing-entry__reshare needs ul or ol around it
Signed-off-by: Simon L <szaimen@e.mail.de>
Diffstat (limited to 'apps/files_sharing')
-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"