mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 20:44:32 -05:00
Fix Button2 isDisabled prop (#3146)
* Fix Button2 isDisabled prop * Release notes * Update 3146.md
This commit is contained in:
committed by
GitHub
parent
5b0cc63f73
commit
73d52fa0d0
@@ -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>
|
||||
);
|
||||
|
||||
6
upcoming-release-notes/3146.md
Normal file
6
upcoming-release-notes/3146.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Bugfix
|
||||
authors: [joel-jeremy]
|
||||
---
|
||||
|
||||
Fix Button2 isDisabled prop.
|
||||
Reference in New Issue
Block a user