We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70e4028 commit 44afc1eCopy full SHA for 44afc1e
.changeset/good-files-teach.md
@@ -0,0 +1,5 @@
1
+---
2
+'@keystar/ui': patch
3
4
+
5
+Fixed `buttonLabelBehavior` for `ActionGroup` not passed by `ActionBar`
design-system/pkg/src/action-bar/ActionBar.tsx
@@ -62,6 +62,7 @@ function ActionBarInner<T>(
62
selectedItemCount,
63
isOpen,
64
items,
65
+ buttonLabelBehavior,
66
} = props;
67
68
let styleProps = useStyleProps(props);
@@ -157,7 +158,7 @@ function ActionBarInner<T>(
157
158
aria-label={stringFormatter.format('actions')}
159
prominence="low"
160
overflowMode="collapse"
- buttonLabelBehavior="collapse"
161
+ buttonLabelBehavior={buttonLabelBehavior}
162
onAction={onAction}
163
gridArea="actiongroup"
164
>
0 commit comments