From 4816befa71e4172609d1b50f1622c69a4235063a Mon Sep 17 00:00:00 2001 From: Marcel Baumgartner Date: Tue, 16 Jan 2024 16:25:34 +0100 Subject: [PATCH] Improved ticket popup button. Added better separation between tickets in the user view --- .../Shared/Components/TicketPopup/TicketPopupMain.razor | 2 +- .../Shared/Components/TicketPopup/TicketPopupOverview.razor | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Moonlight/Shared/Components/TicketPopup/TicketPopupMain.razor b/Moonlight/Shared/Components/TicketPopup/TicketPopupMain.razor index f4411697..1227dcb8 100644 --- a/Moonlight/Shared/Components/TicketPopup/TicketPopupMain.razor +++ b/Moonlight/Shared/Components/TicketPopup/TicketPopupMain.razor @@ -3,7 +3,7 @@ @if (ViewIndex == 0) { - } diff --git a/Moonlight/Shared/Components/TicketPopup/TicketPopupOverview.razor b/Moonlight/Shared/Components/TicketPopup/TicketPopupOverview.razor index 735345f8..0441a218 100644 --- a/Moonlight/Shared/Components/TicketPopup/TicketPopupOverview.razor +++ b/Moonlight/Shared/Components/TicketPopup/TicketPopupOverview.razor @@ -51,6 +51,11 @@ @(Formatter.FormatAgoFromDateTime(ticket.CreatedAt)) + + if (ticket.Id != Tickets.Last().Id) + { + + } } } else