mirror of
https://github.com/nextcloud/server.git
synced 2026-03-25 20:03:23 -04:00
Merge pull request #42021 from nextcloud/bugfix/noid/fix-undefined-array-entries
This commit is contained in:
commit
3bdabae487
3 changed files with 5 additions and 5 deletions
|
|
@ -307,10 +307,10 @@ export default defineComponent({
|
|||
.map(this.getNode)
|
||||
.filter(file => {
|
||||
if (!showHidden) {
|
||||
return file?.attributes?.hidden !== true && !file?.basename.startsWith('.')
|
||||
return file && file?.attributes?.hidden !== true && !file?.basename.startsWith('.')
|
||||
}
|
||||
|
||||
return true
|
||||
return !!file
|
||||
})
|
||||
},
|
||||
|
||||
|
|
|
|||
4
dist/files-main.js
vendored
4
dist/files-main.js
vendored
File diff suppressed because one or more lines are too long
2
dist/files-main.js.map
vendored
2
dist/files-main.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue