diff --git a/src/button/index.ts b/src/button/index.ts index a208bc5b..4d02962b 100644 --- a/src/button/index.ts +++ b/src/button/index.ts @@ -80,7 +80,7 @@ export class Button extends FoundationButton { } if (attrName === 'disabled') { - this.disabled = true; + this.disabled = newVal !== null; } } }