From bd63abb9f952c22f768cff7782fc2ae0a656d742 Mon Sep 17 00:00:00 2001 From: Melloware Date: Wed, 9 Aug 2023 08:56:49 -0400 Subject: [PATCH] Fix #4753: ConfirmDialog appendTo (#4756) --- 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) );