Browse Source
fix: Update `@nextcloud/files` to 3.4.0 to fix public link shares
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
pull/45538/head
Ferdinand Thiessen
1 year ago
No known key found for this signature in database
GPG Key ID: 45FAE7268762B400
3 changed files with
3 additions and
3 deletions
-
apps/files/src/components/FilesListVirtual.vue
-
apps/files/src/views/FilesList.vue
-
package.json
|
|
@ -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", |
|
|
|