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
When several icons are rendered on the same page, they are changing each other's colors. I think this is happening due to different icons using the same id values. I changed id values, and it fixed the problem.
When several icons are rendered on the same page, they are changing each other's colors. I think this is happening due to different icons using the same id values. I changed id values, and it fixed the problem.
Issue:
SVG-1:
<defs> <linearGradient id='a'></linearGradient> <path fill='url(#a)'></path> </defs>
SVG-2:
<defs> <linearGradient id='a'></linearGradient> <path fill='url(#a)'></path> </defs>
Fix:
SVG-2:
<defs> <linearGradient id='a.1'></linearGradient> <path fill='url(#a.1)'></path> </defs>
The text was updated successfully, but these errors were encountered: