fix: remove edX support URL from login page (#28577)

This commit is contained in:
Zainab Amir
2021-09-01 11:29:39 +05:00
committed by GitHub
parent c1dabd1af3
commit cfc8ab6298
3 changed files with 19 additions and 13 deletions

View File

@@ -225,14 +225,13 @@
{
email: error.responseJSON.email,
platform_name: this.platform_name,
support_url: 'https://support.edx.org/',
line_break: HtmlUtils.HTML('<br/>'),
strong_start: HtmlUtils.HTML('<strong>'),
strong_end: HtmlUtils.HTML('</strong>'),
anchorStart: HtmlUtils.HTML(
StringUtils.interpolate(
'<a href="{SupportUrl}">', {
SupportUrl: 'https://support.edx.org/'
SupportUrl: this.supportURL,
}
)
),