Browse Source

removing getContainer fixed (#19233)

pull/19624/head
Emerson Laurentino 5 years ago
committed by Amumu
parent
commit
be0fd703f7
  1. 2
      components/modal/confirm.tsx

2
components/modal/confirm.tsx

@ -148,7 +148,7 @@ export default function confirm(config: ModalFuncProps) {
}
function render(props: any) {
ReactDOM.render(<ConfirmDialog getContainer={false} {...props} />, div);
ReactDOM.render(<ConfirmDialog {...props} />, div);
}
function close(...args: any[]) {

Loading…
Cancel
Save