Skip to content

Commit

Permalink
fix bootstrap
Browse files Browse the repository at this point in the history
Signed-off-by: Ashwin P Chandran <[email protected]>
  • Loading branch information
ashwin-pc committed Aug 28, 2024
1 parent 6768169 commit 022083c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/core/public/overlays/modal/modal_service.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@ export interface OverlayModalStart {
/**
* @public
*/
export interface OverlayModalOpenOptions extends Omit<EuiModalProps, 'children' | 'onClose'> {
export interface OverlayModalOpenOptions extends Pick<EuiModalProps, 'maxWidth'> {
className?: string;
closeButtonAriaLabel?: string;
'data-test-subj'?: string;
}

Expand Down

0 comments on commit 022083c

Please sign in to comment.