From 8b5004d9078e1a8890a2fe144ac6d43ac7f3f068 Mon Sep 17 00:00:00 2001 From: Mike Alhayek Date: Thu, 12 Oct 2023 20:25:44 -0700 Subject: [PATCH] Fix a typo --- .../Views/UserNotificationNavbar.cshtml | 2 +- .../TheTheme/Views/UserNotificationNavbar.cshtml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/OrchardCore.Modules/OrchardCore.Notifications/Views/UserNotificationNavbar.cshtml b/src/OrchardCore.Modules/OrchardCore.Notifications/Views/UserNotificationNavbar.cshtml index 50f95ac4f69..f175d73ca80 100644 --- a/src/OrchardCore.Modules/OrchardCore.Notifications/Views/UserNotificationNavbar.cshtml +++ b/src/OrchardCore.Modules/OrchardCore.Notifications/Views/UserNotificationNavbar.cshtml @@ -39,7 +39,7 @@ dynamic shape = await NotificationDisplayDriver.BuildDisplayAsync(notification, UpdateModelAccessor.ModelUpdater, "Header"); shape.Notification = notification;
- @await DisplayAsync(notification) + @await DisplayAsync(shape)
} diff --git a/src/OrchardCore.Themes/TheTheme/Views/UserNotificationNavbar.cshtml b/src/OrchardCore.Themes/TheTheme/Views/UserNotificationNavbar.cshtml index 16a68e96da5..4b6ec01386a 100644 --- a/src/OrchardCore.Themes/TheTheme/Views/UserNotificationNavbar.cshtml +++ b/src/OrchardCore.Themes/TheTheme/Views/UserNotificationNavbar.cshtml @@ -42,7 +42,7 @@ dynamic shape = await NotificationDisplayDriver.BuildDisplayAsync(notification, UpdateModelAccessor.ModelUpdater, "Header"); shape.Notification = notification;
- @await DisplayAsync(notification) + @await DisplayAsync(shape)
}