From 701ae1e2cedaa97bcc13b3d47d201cffe9bdf13e Mon Sep 17 00:00:00 2001 From: samgibsonmoj Date: Mon, 5 Aug 2024 15:05:26 +0100 Subject: [PATCH] Add card 'Expand' action for sentence information --- .../Components/CaseSentenceInformation.razor | 28 ++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/src/Server.UI/Pages/Participants/Components/CaseSentenceInformation.razor b/src/Server.UI/Pages/Participants/Components/CaseSentenceInformation.razor index f0c417d1..ae0dc03e 100644 --- a/src/Server.UI/Pages/Participants/Components/CaseSentenceInformation.razor +++ b/src/Server.UI/Pages/Participants/Components/CaseSentenceInformation.razor @@ -8,6 +8,11 @@ Custody + + + + + @@ -27,6 +32,11 @@ Sentence + + + + + @@ -70,6 +80,11 @@ Community + + + + + @@ -92,6 +107,11 @@ Supervising Officer / Offender Manager + + + + + @@ -170,6 +190,12 @@ ) ); - base.OnInitialized(); + base.OnInitialized(); } + + private async Task Expand() + { + await DialogService.ShowMessageBox("Expanded Information", "More information..."); + } + }