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
/** * Add <img> for icons, prefixed with codeBasePath and optional prefix. * @param {Element} [element] Element containing icons * @param {string} [prefix] prefix to be added to icon the src */functiondecorateIcons(element,prefix=''){consticons=element.querySelectorAll('span.icon');icons.forEach((span)=>{decorateIcon(span,prefix);});}
Actual Behaviour
/** * Add <img> for icons, prefixed with codeBasePath and optional prefix. * @param {Element} [element] Element containing icons * @param {string} [prefix] prefix to be added to icon the src */functiondecorateIcons(element,prefix=''){consticons=[...element.querySelectorAll('span.icon')];icons.forEach((span)=>{decorateIcon(span,prefix);});}
Reproduce Scenario (including but not limited to)
n/a
Steps to Reproduce
n/a
Platform and Version
n/a
Sample Code that illustrates the problem
n/a
Logs taken while reproducing problem
n/a
The text was updated successfully, but these errors were encountered:
Expected Behaviour
Actual Behaviour
Reproduce Scenario (including but not limited to)
n/a
Steps to Reproduce
n/a
Platform and Version
n/a
Sample Code that illustrates the problem
n/a
Logs taken while reproducing problem
n/a
The text was updated successfully, but these errors were encountered: