Calling inline-svg with something like {"path": {"fill": 'black'}} will end up setting the fill property on the path element, but because there's a style attrib that ends up taking priority.
Not 100% sure on how best to fix it - though I imagine it's probably best to also check the style tag for the attrib in question?
For reasons that I don't understand, we've got an SVG that is something like:
Calling
inline-svg
with something like{"path": {"fill": 'black'}}
will end up setting the fill property on the path element, but because there's a style attrib that ends up taking priority.Not 100% sure on how best to fix it - though I imagine it's probably best to also check the style tag for the attrib in question?