mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #3766 from overleaf/jpa-xss-8
[views] mitigate Angular XSS in affiliations section of user settings GitOrigin-RevId: bad444cea136c51f54546770653f21cec6fa70e3
This commit is contained in:
parent
58841ecbe9
commit
115fe20184
1 changed files with 3 additions and 3 deletions
|
@ -269,7 +269,7 @@ form.row(
|
||||||
aria-label=translate("close")
|
aria-label=translate("close")
|
||||||
)
|
)
|
||||||
span(aria-hidden="true") ×
|
span(aria-hidden="true") ×
|
||||||
.small !{translate("institution_acct_successfully_linked", {institutionName: institutionLinked.universityName})}
|
.small(ng-non-bindable) !{translate("institution_acct_successfully_linked", {institutionName: institutionLinked.universityName})}
|
||||||
if institutionLinked.hasEntitlement
|
if institutionLinked.hasEntitlement
|
||||||
.small !{translate("this_grants_access_to_features", {featureType: translate("professional")})}
|
.small !{translate("this_grants_access_to_features", {featureType: translate("professional")})}
|
||||||
if institutionEmailNonCanonical
|
if institutionEmailNonCanonical
|
||||||
|
@ -302,9 +302,9 @@ form.row(
|
||||||
| #{translate("generic_something_went_wrong")}.
|
| #{translate("generic_something_went_wrong")}.
|
||||||
br
|
br
|
||||||
if samlError.translatedMessage
|
if samlError.translatedMessage
|
||||||
| !{samlError.translatedMessage}
|
span(ng-non-bindable) !{samlError.translatedMessage}
|
||||||
else if samlError.message
|
else if samlError.message
|
||||||
| #{samlError.message}
|
span(ng-non-bindable) #{samlError.message}
|
||||||
if samlError.tryAgain
|
if samlError.tryAgain
|
||||||
br
|
br
|
||||||
| #{translate("try_again")}.
|
| #{translate("try_again")}.
|
||||||
|
|
Loading…
Reference in a new issue