Browse Source

fix(files): use the correct theming instance name from capabilities to set the page title

Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
pull/53321/head
Julien Veyssier 5 months ago
parent
commit
01de909a61
No known key found for this signature in database GPG Key ID: 4141FEE162030638
  1. 2
      apps/files/src/views/FilesList.vue

2
apps/files/src/views/FilesList.vue

@ -486,7 +486,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'}`
},
/**

Loading…
Cancel
Save