We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da52c7f commit d429c50Copy full SHA for d429c50
src/CommunityToolkit.Maui/Views/Popup/PopupPage.shared.cs
@@ -49,7 +49,7 @@ public PopupPage(Popup popup, IPopupOptions popupOptions)
49
}, () => popupOptions.CanBeDismissedByTappingOutsideOfPopup);
50
51
// Only set the content if the parent constructor hasn't set the content already; don't override content if it already exists
52
- base.Content ??= new PopupPageLayout(popup, popupOptions, tapOutsideOfPopupCommand);
+ base.Content = new PopupPageLayout(popup, popupOptions, tapOutsideOfPopupCommand);
53
54
if (popupOptions is BindableObject bindablePopupOptions)
55
{
0 commit comments