diff --git a/rsconcept/frontend/src/components/ui/Modal.tsx b/rsconcept/frontend/src/components/ui/Modal.tsx index aa532d61..789129ed 100644 --- a/rsconcept/frontend/src/components/ui/Modal.tsx +++ b/rsconcept/frontend/src/components/ui/Modal.tsx @@ -21,6 +21,7 @@ export interface ModalProps extends CProps.Styling { readonly?: boolean; canSubmit?: boolean; + overflowVisible?: boolean; hideWindow: () => void; onSubmit?: () => void; @@ -39,6 +40,7 @@ function Modal({ submitInvalidTooltip, className, children, + overflowVisible, submitText = 'Продолжить', ...restProps }: ModalProps) { @@ -86,6 +88,7 @@ function Modal({