From 72503c89e6250f90066ff94c3ab64a5476339b95 Mon Sep 17 00:00:00 2001 From: samgibsonmoj Date: Thu, 24 Oct 2024 13:49:48 +0100 Subject: [PATCH] Adjust 'Due XXX' text for tab tooltip --- src/Server.UI/Pages/Participants/Participant.razor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Server.UI/Pages/Participants/Participant.razor b/src/Server.UI/Pages/Participants/Participant.razor index 7033d2df..5d6b2709 100644 --- a/src/Server.UI/Pages/Participants/Participant.razor +++ b/src/Server.UI/Pages/Participants/Participant.razor @@ -189,7 +189,7 @@ { var datePart = _participant.RiskDue.Value.Date; - _riskInfo = datePart.Humanize(); + _riskInfo = $"Due {datePart.Humanize()}"; int _dueInDays = _participant!.RiskDueInDays!.Value; switch (_dueInDays)