We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15ffbaa commit 7a50af6Copy full SHA for 7a50af6
polaris-react/src/components/BulkActions/tests/BulkActions.test.tsx
@@ -15,6 +15,8 @@ interface Props {
15
bulkActions: BulkActionButtonProps['content'][];
16
promotedActions: NonNullable<BulkActionsProps['promotedActions']>;
17
disabled: boolean;
18
+ width: number;
19
+ isSticky: boolean;
20
}
21
22
const bulkActionProps: Props = {
@@ -28,6 +30,8 @@ const bulkActionProps: Props = {
28
30
},
29
31
],
32
disabled: false,
33
+ width: 500,
34
+ isSticky: false,
35
};
36
37
describe('<BulkActions />', () => {
0 commit comments