Merge pull request #50107 from nextcloud/artonge/fix/displayname_in_sidebar

This commit is contained in:
John Molakvoæ 2025-01-09 17:26:14 +01:00 committed by GitHub
commit 2f754529ce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 5 deletions

View file

@ -245,8 +245,8 @@ export default {
},
compact: this.hasLowHeight || !this.fileInfo.hasPreview || this.isFullScreen,
loading: this.loading,
name: this.fileInfo.name,
title: this.fileInfo.name,
name: this.node?.displayname ?? this.fileInfo.name,
title: this.node?.displayname ?? this.fileInfo.name,
}
} else if (this.error) {
return {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long