Merge pull request #30166 from openedx/jhynes/microba-1779_fix-link

fix: remove `noreferrer` tag from link to Comms MFE to fix blank page
This commit is contained in:
Justin Hynes
2022-04-01 14:28:24 -04:00
committed by GitHub

View File

@@ -10,7 +10,7 @@ from openedx.core.djangolib.markup import HTML
%if 'communications_mfe_url' in section_data:
<p>
<em>
${_("To use the email tool, visit the")} <a href="${section_data['communications_mfe_url']}" target="_blank" rel="noopener noreferrer">${_("new experience")}</a>.
${_("To use the email tool, visit the")} <a href="${section_data['communications_mfe_url']}" target="_blank" rel="noopener">${_("new experience")}</a>.
</em>
</p>
%else: