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/53571/head
Julien Veyssier 2025-06-04 12:30:00 +07:00 committed by Ferdinand Thiessen
parent acab1571df
commit 5751b82715
No known key found for this signature in database
GPG Key ID: 45FAE7268762B400
1 changed files with 1 additions and 1 deletions

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