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
No known key found for this signature in database
GPG Key ID: 4141FEE162030638
1 changed files with
1 additions and
1 deletions
-
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'}` |
|
|
|
}, |
|
|
|
|
|
|
|
/** |
|
|
|
|