Skip to content

Commit 445dae8

Browse files
committed
Remove color configuration from panelProps
we're now overriding it via `background-color`, and it doesn't work to color the popover arrow in any case
1 parent 03f8f15 commit 445dae8

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/components/popover/popover.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,10 @@ export interface EuiPopoverProps extends PropsWithChildren, CommonProps {
147147
/**
148148
* Object of props passed to EuiPanel. See #EuiPopoverPanelProps
149149
*/
150-
panelProps?: Omit<EuiPopoverPanelProps, 'style' | 'hasShadow' | 'hasBorder'>;
150+
panelProps?: Omit<
151+
EuiPopoverPanelProps,
152+
'style' | 'hasShadow' | 'hasBorder' | 'color'
153+
>;
151154
panelRef?: RefCallback<HTMLElement | null>;
152155
/**
153156
* Optional screen reader instructions to announce upon popover open,

0 commit comments

Comments
 (0)