From aec0d053003e48e300aee6ad8012b4535234c48b Mon Sep 17 00:00:00 2001 From: melloware Date: Wed, 9 Aug 2023 08:54:27 -0400 Subject: [PATCH] Fix #4753: ConfirmDialog appendTo --- components/lib/confirmdialog/ConfirmDialog.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/lib/confirmdialog/ConfirmDialog.js b/components/lib/confirmdialog/ConfirmDialog.js index 34f036cb36..e458688d24 100644 --- a/components/lib/confirmdialog/ConfirmDialog.js +++ b/components/lib/confirmdialog/ConfirmDialog.js @@ -208,7 +208,8 @@ export const ConfirmDialog = React.memo( onHide: hide, breakpoints: getPropValue('breakpoints'), pt: currentProps.pt, - unstyled: props.unstyled + unstyled: props.unstyled, + appendTo: getPropValue('appendTo') }, ConfirmDialogBase.getOtherProps(currentProps) );