mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix: Update @nextcloud/files to 3.4.0 to fix public link shares
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This commit is contained in:
parent
4a6ac1f1aa
commit
67d8277c49
3 changed files with 3 additions and 3 deletions
|
|
@ -160,7 +160,7 @@ export default defineComponent({
|
|||
if (this.filesListWidth < 768) {
|
||||
return false
|
||||
}
|
||||
return this.nodes.some(node => node.attributes.size !== undefined)
|
||||
return this.nodes.some(node => node.size !== undefined)
|
||||
},
|
||||
|
||||
sortedHeaders() {
|
||||
|
|
|
|||
|
|
@ -308,7 +308,7 @@ export default defineComponent({
|
|||
// Filter based on the filterText obtained from nextcloud:unified-search.search event.
|
||||
if (this.filterText) {
|
||||
filteredDirContent = filteredDirContent.filter(node => {
|
||||
return node.attributes.basename.toLowerCase().includes(this.filterText.toLowerCase())
|
||||
return node.basename.toLowerCase().includes(this.filterText.toLowerCase())
|
||||
})
|
||||
console.debug('Files view filtered', filteredDirContent)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@
|
|||
"@nextcloud/capabilities": "^1.0.4",
|
||||
"@nextcloud/dialogs": "^5.3.1",
|
||||
"@nextcloud/event-bus": "^3.1.0",
|
||||
"@nextcloud/files": "^3.1.1",
|
||||
"@nextcloud/files": "^3.4.0",
|
||||
"@nextcloud/initial-state": "^2.0.0",
|
||||
"@nextcloud/l10n": "^2.1.0",
|
||||
"@nextcloud/logger": "^2.5.0",
|
||||
|
|
|
|||
Loading…
Reference in a new issue