summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/js
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-05-06 18:32:52 +0200
committerMorris Jobke <hey@morrisjobke.de>2015-05-06 18:32:52 +0200
commitb1713b2f75370d6c597c2a2a16ab51431802ade2 (patch)
tree743ae6d1c0ed5c5fe4e7823833bdcdb635a13a61 /apps/files_sharing/js
parent6633514a980b3246bdd4c26a1b890d12306f47f8 (diff)
downloadnextcloud-server-b1713b2f75370d6c597c2a2a16ab51431802ade2.tar.gz
nextcloud-server-b1713b2f75370d6c597c2a2a16ab51431802ade2.zip
Enable file icons & previews in "Shared ..." categories
* sharing API returns now the mimetype icon path * file previews are now lazyloaded by default (as the doc says) * fixes #16086
Diffstat (limited to 'apps/files_sharing/js')
-rw-r--r--apps/files_sharing/js/sharedfilelist.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_sharing/js/sharedfilelist.js b/apps/files_sharing/js/sharedfilelist.js
index 2c7d6c7d43a..ca187940a08 100644
--- a/apps/files_sharing/js/sharedfilelist.js
+++ b/apps/files_sharing/js/sharedfilelist.js
@@ -176,6 +176,7 @@
.map(function(share) {
var file = {
id: share.file_source,
+ icon: share.icon,
mimetype: share.mimetype
};
if (share.item_type === 'folder') {