fix: remove noreferrer tag from link to Comms MFE to fix blank page

[MICROBA-1779 & CR-4684]

- remove `noreferrer` tag from link to the Comms MFE to fix content opening in a blank page
This commit is contained in:
Justin Hynes
2022-04-01 13:37:50 -04:00
parent c88db037fa
commit 9f849f6e17

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: