mirror of
https://github.com/overleaf/overleaf.git
synced 2025-03-09 12:42:37 +00:00
Merge pull request #10152 from overleaf/ii-settings-sso-unescape-characters
[web] Settings page incorrect character escaping GitOrigin-RevId: 3bd27a905394d5476487038b4d30ed208d6901ac
This commit is contained in:
parent
7180ee8700
commit
feb5ae56f5
1 changed files with 4 additions and 0 deletions
|
@ -30,6 +30,8 @@ function SsoLinkingInfo({ domainInfo, email }: SSOLinkingInfoProps) {
|
||||||
i18nKey="to_add_email_accounts_need_to_be_linked_2"
|
i18nKey="to_add_email_accounts_need_to_be_linked_2"
|
||||||
components={[<strong />]} // eslint-disable-line react/jsx-key
|
components={[<strong />]} // eslint-disable-line react/jsx-key
|
||||||
values={{ institutionName: domainInfo.university.name }}
|
values={{ institutionName: domainInfo.university.name }}
|
||||||
|
// eslint-disable-next-line react/jsx-boolean-value
|
||||||
|
shouldUnescape={true}
|
||||||
/>
|
/>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
|
@ -37,6 +39,8 @@ function SsoLinkingInfo({ domainInfo, email }: SSOLinkingInfoProps) {
|
||||||
i18nKey="doing_this_will_verify_affiliation_and_allow_log_in_2"
|
i18nKey="doing_this_will_verify_affiliation_and_allow_log_in_2"
|
||||||
components={[<strong />]} // eslint-disable-line react/jsx-key
|
components={[<strong />]} // eslint-disable-line react/jsx-key
|
||||||
values={{ institutionName: domainInfo.university.name }}
|
values={{ institutionName: domainInfo.university.name }}
|
||||||
|
// eslint-disable-next-line react/jsx-boolean-value
|
||||||
|
shouldUnescape={true}
|
||||||
/>{' '}
|
/>{' '}
|
||||||
<a
|
<a
|
||||||
href="/learn/how-to/Institutional_Login"
|
href="/learn/how-to/Institutional_Login"
|
||||||
|
|
Loading…
Reference in a new issue