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
As as result of fixing #543 I introduced another probably more severe bug. Using className as the value to VirtualDom.attrbute incorrectly renders the classname attribute.
For non svg dom nodes it renders as classname and for svg nodes is renders as className. Both are incorrect syntax and means no styles are actually applied.
Fix
Using class fixes this issue.
The text was updated successfully, but these errors were encountered:
Context
As as result of fixing #543 I introduced another probably more severe bug. Using className as the value to VirtualDom.attrbute incorrectly renders the classname attribute.
For non svg dom nodes it renders as
classname
and for svg nodes is renders asclassName
. Both are incorrect syntax and means no styles are actually applied.Fix
Using
class
fixes this issue.The text was updated successfully, but these errors were encountered: