Skip to content
Snippets Groups Projects
Unverified Commit 73d52fa0 authored by Joel Jeremy Marquez's avatar Joel Jeremy Marquez Committed by GitHub
Browse files

Fix Button2 isDisabled prop (#3146)

* Fix Button2 isDisabled prop

* Release notes

* Update 3146.md
parent 5b0cc63f
No related branches found
No related tags found
No related merge requests found
......@@ -171,7 +171,12 @@ export const Button = forwardRef<HTMLButtonElement, ButtonProps>(
});
return (
<ReactAriaButton ref={ref} style={buttonStyle} {...restProps}>
<ReactAriaButton
ref={ref}
isDisabled={isDisabled}
style={buttonStyle}
{...restProps}
>
{children}
</ReactAriaButton>
);
......
---
category: Bugfix
authors: [joel-jeremy]
---
Fix Button2 isDisabled prop.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment