Merge pull request #35172 from nextcloud/backport/35014/stable25

[stable25] Fix rendering of login headline
This commit is contained in:
Simon L 2022-11-15 13:44:42 +01:00 committed by GitHub
commit 0ba09ac1db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 4 deletions

View file

@ -52,7 +52,7 @@
<!-- the following div ensures that the spinner is always inside the #message div -->
<div style="clear: both;" />
</div>
<h2 class="login-form__headline">{{ t('core', 'Log in to {productName}', { productName: OC.theme.name }) }}</h2>
<h2 class="login-form__headline" v-html="headline" />
<NcTextField id="user"
ref="user"
:label="t('core', 'Account name or email')"
@ -159,6 +159,7 @@ export default {
loading: false,
timezone: jstz.determine().name(),
timezoneOffset: (-new Date().getTimezoneOffset() / 60),
headline: t('core', 'Log in to {productName}', { productName: OC.theme.name }),
user: '',
password: '',
}

4
dist/core-login.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long