mirror of
https://github.com/nextcloud/server.git
synced 2026-06-05 06:44:47 -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
8f7831deeb
commit
042b62f80a
2 changed files with 2 additions and 2 deletions
|
|
@ -176,7 +176,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() {
|
||||
|
|
|
|||
|
|
@ -301,7 +301,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)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue