From ab5b0c02293de5efd8e670325b9431bdd24034b4 Mon Sep 17 00:00:00 2001 From: melloware Date: Thu, 7 Mar 2024 10:53:12 -0500 Subject: [PATCH] Fix #6111: ConfirmDialog/Popup 'content' not allowed on DIV --- components/lib/confirmdialog/ConfirmDialogBase.js | 1 + components/lib/confirmpopup/ConfirmPopupBase.js | 1 + 2 files changed, 2 insertions(+) diff --git a/components/lib/confirmdialog/ConfirmDialogBase.js b/components/lib/confirmdialog/ConfirmDialogBase.js index 747703edce..9e71b6a627 100644 --- a/components/lib/confirmdialog/ConfirmDialogBase.js +++ b/components/lib/confirmdialog/ConfirmDialogBase.js @@ -23,6 +23,7 @@ export const ConfirmDialogBase = ComponentBase.extend({ breakpoints: null, children: undefined, className: null, + content: null, defaultFocus: 'accept', footer: null, icon: null, diff --git a/components/lib/confirmpopup/ConfirmPopupBase.js b/components/lib/confirmpopup/ConfirmPopupBase.js index 5fbcd4973a..c5ad494c92 100644 --- a/components/lib/confirmpopup/ConfirmPopupBase.js +++ b/components/lib/confirmpopup/ConfirmPopupBase.js @@ -82,6 +82,7 @@ export const ConfirmPopupBase = ComponentBase.extend({ children: undefined, className: null, closeOnEscape: true, + content: null, defaultFocus: 'accept', dismissable: true, footer: null,