diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2025-04-30 18:07:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-30 18:07:08 +0200 |
commit | 2036beec06e110d24f178759fd831745a021cc23 (patch) | |
tree | 6b4e7dffbaa13a0cdb662612ced255dbbc8dc9f5 /apps/files/src | |
parent | 10d17de5bc1c38168d2dca306f3d601400787c67 (diff) | |
parent | eab2d9e3a9bc0238e43cf01c7921f4a9b61b82d3 (diff) | |
download | nextcloud-server-2036beec06e110d24f178759fd831745a021cc23.tar.gz nextcloud-server-2036beec06e110d24f178759fd831745a021cc23.zip |
Merge pull request #52565 from nextcloud/artonge/fix/attribute_in_sidebar
fix: Forward attributes to the sidebar
Diffstat (limited to 'apps/files/src')
-rw-r--r-- | apps/files/src/services/FileInfo.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files/src/services/FileInfo.ts b/apps/files/src/services/FileInfo.ts index 18629845cca..318236f1677 100644 --- a/apps/files/src/services/FileInfo.ts +++ b/apps/files/src/services/FileInfo.ts @@ -24,6 +24,7 @@ export default function(node: Node) { sharePermissions: node.attributes['share-permissions'], shareAttributes: JSON.parse(node.attributes['share-attributes'] || '[]'), type: node.type === 'file' ? 'file' : 'dir', + attributes: node.attributes, }) // TODO remove when no more legacy backbone is used |