Merge pull request #52565 from nextcloud/artonge/fix/attribute_in_sidebar

fix: Forward attributes to the sidebar
pull/52567/head
Ferdinand Thiessen 1 year ago committed by GitHub
commit 2036beec06
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      apps/files/src/services/FileInfo.ts
  2. 4
      dist/files-sidebar.js
  3. 2
      dist/files-sidebar.js.map

@ -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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save