Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-10-09 08:53:30 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2019-10-29 15:20:03 +0300
commit1c13c52acffeac59b0ef5d156a9a5bc36e611619 (patch)
treee140b7a2342d7ee396acc4b2abe24264f55d0549 /apps/files_sharing/src/views/SharingTab.vue
parentae59edc6bfa7331636c7a0d0b144f292367ae5a3 (diff)
Systemtags and external actions update
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files_sharing/src/views/SharingTab.vue')
-rw-r--r--apps/files_sharing/src/views/SharingTab.vue8
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/files_sharing/src/views/SharingTab.vue b/apps/files_sharing/src/views/SharingTab.vue
index 4f16f4b2435..216b2e74ffc 100644
--- a/apps/files_sharing/src/views/SharingTab.vue
+++ b/apps/files_sharing/src/views/SharingTab.vue
@@ -69,6 +69,14 @@
:id="`${fileInfo.id}`"
type="file"
:name="fileInfo.name" />
+
+ <!-- additionnal entries, use it with cautious -->
+ <div v-for="(section, index) in sections"
+ :ref="'section-' + index"
+ :key="index"
+ class="sharingTab__additionalContent">
+ <component :is="section($refs['section-'+index], fileInfo)" :file-info="fileInfo" />
+ </div>
</template>
</Tab>
</template>