You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<axa-footer> takes slotted light-DOM children for SEO reasons.
To cater for usage scenarios where those children are not direct descendants of <axa-footer>, but rather nested under some other HTML tag(s), an internal function re-slots them to be direct descendants.
A parent-chasing loop terminates when the host element <axa-footer> itself is reached.
This fails for versioned <axa-footer-aem> and similar, because comparison in the loop condition is against the unversioned class tag name 'AXA-FOOTER'.
Fix this bug.
The text was updated successfully, but these errors were encountered:
<axa-footer> takes slotted light-DOM children for SEO reasons.
To cater for usage scenarios where those children are not direct descendants of <axa-footer>, but rather nested under some other HTML tag(s), an internal function re-slots them to be direct descendants.
A parent-chasing loop terminates when the host element <axa-footer> itself is reached.
This fails for versioned <axa-footer-aem> and similar, because comparison in the loop condition is against the unversioned class tag name 'AXA-FOOTER'.
Fix this bug.
The text was updated successfully, but these errors were encountered: