diff --git a/Components/App.razor b/Components/App.razor
index 7780201..5ebba8a 100644
--- a/Components/App.razor
+++ b/Components/App.razor
@@ -5,6 +5,13 @@
Current count: @currentCount
- - - -@code { - private int currentCount = 0; - - private void IncrementCount() - { - currentCount++; - } -} diff --git a/Components/Pages/Home.razor b/Components/Pages/Home.razor index b16758b..2e9e3b0 100644 --- a/Components/Pages/Home.razor +++ b/Components/Pages/Home.razor @@ -5,12 +5,17 @@ @inject ITicketService TicketService @inject NavigationManager Nav -Effiziente FIFO-Verwaltung nach Priorität
+@(ticket.Description.Length > 200 ? ticket.Description.Substring(0, 200) + "..." : ticket.Description)
+@(ticket.Description.Length > 200 ? ticket.Description.Substring(0, 200) + "..." : ticket.Description)
+