Hi @srikanthp689160 ,
Have you checked if aria-label tag is whitelisted in xssprotection.
AEM uses XSS (Cross Site Scripting) protection to prevent attackers to inject code into web pages viewed by other users, is based on AntiSamy Java library provided by OWASP.
If the tags are not whitelisted, tags will be stripped off while rendering.
To fix the issue,
1.Navigate to /libs/cq/xssprotection/config.xml
2.overlay the file under apps.
3.Add the below code.
<tag name="a" action="validate">
<attribute name="aria-label ">
<regexp-list>
<regexp name="anything"/>
</regexp-list>
</attribute>
</tag>
Above code will allow the aria-label attribute inside anchor tag. This should fix your issue.
You can refer to below documents to understand in depth.
https://helpx.adobe.com/experience-manager/6-3/sites/developing/using/security.html#ProtectagainstCrossSiteScriptingXSS
https://helpx.adobe.com/experience-manager/kb/target-attribute-issue-tag.html