Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix(files): use the correct theming instance name from capabilities t…
…o set the page title

Signed-off-by: Julien Veyssier <[email protected]>
  • Loading branch information
julien-nc committed Jun 18, 2025
commit bb3273314954fa3b917f3592bb4005a1d77f692d
4 changes: 2 additions & 2 deletions apps/files/src/views/FilesList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ export default defineComponent({
* Update the window title to match the page heading
*/
pageHeading() {
document.title = `${this.pageHeading} - ${getCapabilities().theming?.productName ?? 'Nextcloud'}`
document.title = `${this.pageHeading} - ${getCapabilities().theming?.name ?? 'Nextcloud'}`
},

currentView(newView, oldView) {
Expand Down Expand Up @@ -494,7 +494,7 @@ export default defineComponent({

// Reload on settings change
this.unsubscribeStoreCallback = this.userConfigStore.$subscribe(() => this.fetchContent(), { deep: true })

// Finally, fetch the current directory contents
await this.fetchContent()
if (this.fileId) {
Expand Down
Loading