We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97ace70 commit e4185a9Copy full SHA for e4185a9
src/Halogen/VDom/DOM/Prop.purs
@@ -197,7 +197,7 @@ removeProperty = EFn.mkEffectFn2 \key el →
197
EFn.runEffectFn3 Util.hasAttribute null key el >>= case _ of
198
true -> EFn.runEffectFn3 Util.removeAttribute null key el
199
false -> case typeOf (Fn.runFn2 Util.unsafeGetAny key el) of
200
- "string" → EFn.runEffectFn3 Util.removeAttribute null key el
+ "string" → EFn.runEffectFn3 Util.unsafeSetAny key "" el
201
_ → case key of
202
"rowSpan" → EFn.runEffectFn3 Util.unsafeSetAny key 1 el
203
"colSpan" → EFn.runEffectFn3 Util.unsafeSetAny key 1 el
0 commit comments