We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52f3105 commit 55f8f00Copy full SHA for 55f8f00
1 file changed
input-num.js
@@ -258,7 +258,7 @@ static observedAttributes = [
258
break;
259
case DISABLED: // falls through
260
for (const elm of this.#btns)
261
- elm.style.pointerEvents = val ? "none" : "";
+ elm.style.pointerEvents = (val === null) ? "" : "none";
262
default: // handled by BaseElement
263
super.attributeChangedCallback(name, _, val);
264
return;
0 commit comments