Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: Hide download action in shares view
Signed-off-by: Christopher Ng <[email protected]>
  • Loading branch information
Pytal committed May 22, 2024
commit ffda00b2adcc5a95c60b27509ddcce852fb4d826
3 changes: 2 additions & 1 deletion apps/files_sharing/js/sharedfilelist.js
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,8 @@
icon: OC.MimeType.getIconUrl(share.mimetype),
mimetype: share.mimetype,
hasPreview: share.has_preview,
tags: share.tags || []
tags: share.tags || [],
shareAttributes: JSON.parse(share.attributes),
}
if (share.item_type === 'folder') {
file.type = 'dir'
Expand Down