From ed2687c8dbc5bf0c24c04957f8b7e37f34db518c Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Sun, 21 Oct 2018 17:46:52 +0200 Subject: [PATCH] should fix the 'email sent' message --- Yavsc/Views/Command/CommandConfirmation.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Yavsc/Views/Command/CommandConfirmation.cshtml b/Yavsc/Views/Command/CommandConfirmation.cshtml index 76eaca4d..4e962d16 100644 --- a/Yavsc/Views/Command/CommandConfirmation.cshtml +++ b/Yavsc/Views/Command/CommandConfirmation.cshtml @@ -26,7 +26,7 @@ } } } - @if (ViewBag.EmailSent) + @if (ViewBag.EmailSent.Sent) {

@String.Format(SR["EmailSentToPerformer"],User.GetUserName())

}