@@ -5,12 +5,12 @@ import {
55 Overlay2Props as BlueprintOverlayProps ,
66} from "@blueprintjs/core" ;
77
8+ import { preventReactFlowActionsClasses } from "../../cmem" ;
89import { utils } from "../../common" ;
910import { CLASSPREFIX as eccgui } from "../../configuration/constants" ;
1011import { TestableComponent } from "../interfaces" ;
1112
1213import { Card } from "./../Card" ;
13- import { preventReactFlowActionsClasses } from "../../cmem" ;
1414
1515export interface ModalProps extends TestableComponent , BlueprintOverlayProps {
1616 children : React . ReactNode | React . ReactNode [ ] ;
@@ -47,7 +47,7 @@ export interface ModalProps extends TestableComponent, BlueprintOverlayProps {
4747 preventReactFlowEvents ?: boolean ;
4848}
4949
50- export type ModalSize = "tiny" | "small" | "regular" | "large" | "xlarge" | "fullscreen"
50+ export type ModalSize = "tiny" | "small" | "regular" | "large" | "xlarge" | "fullscreen" ;
5151
5252/**
5353 * Displays contents on top of other elements, used to create dialogs.
@@ -70,7 +70,7 @@ export const Modal = ({
7070 onOpening,
7171 "data-test-id" : dataTestId ,
7272 "data-testid" : dataTestid ,
73- preventReactFlowEvents = false ,
73+ preventReactFlowEvents = true ,
7474 ...otherProps
7575} : ModalProps ) => {
7676 const backdropProps : React . HTMLProps < HTMLDivElement > | undefined =
0 commit comments