From e37caf5c8f1a14ada6d09b96ca366455b4fd87bc Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Mon, 7 Oct 2024 10:08:10 +0200 Subject: [PATCH] =?UTF-8?q?refactor(ShowEnvelopeView):=20Kurzzeitanteil=20?= =?UTF-8?q?der=20Verfallszeit=20f=C3=BCr=20schreibgesch=C3=BCtzten=20Umsch?= =?UTF-8?q?lag=20entfernen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- EnvelopeGenerator.Web/Views/Home/ShowEnvelope.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EnvelopeGenerator.Web/Views/Home/ShowEnvelope.cshtml b/EnvelopeGenerator.Web/Views/Home/ShowEnvelope.cshtml index 30ccbfc7..40f99a18 100644 --- a/EnvelopeGenerator.Web/Views/Home/ShowEnvelope.cshtml +++ b/EnvelopeGenerator.Web/Views/Home/ShowEnvelope.cshtml @@ -68,7 +68,7 @@ { var dateTimeSt = string.Empty; if (ViewData["ReadOnly"] is EnvelopeReceiverReadOnlyDto readOnly) - dateTimeSt = readOnly.DateValid.ToLongDateString() + " - " + readOnly.DateValid.ToShortTimeString(); + dateTimeSt = readOnly.DateValid.ToLongDateString();
@string.Format(_localizer["ReadOnlyMessage"], receiver_name, dateTimeSt)
} else