From 8177088a9f8b91a25ff138b511054688613df842 Mon Sep 17 00:00:00 2001 From: samgibsonmoj Date: Mon, 19 Aug 2024 08:03:18 +0100 Subject: [PATCH] Notes consistency amends --- .../Participants/Components/CaseNotes.razor | 21 ++++++------------- 1 file changed, 6 insertions(+), 15 deletions(-) diff --git a/src/Server.UI/Pages/Participants/Components/CaseNotes.razor b/src/Server.UI/Pages/Participants/Components/CaseNotes.razor index 84f3b635..af674040 100644 --- a/src/Server.UI/Pages/Participants/Components/CaseNotes.razor +++ b/src/Server.UI/Pages/Participants/Components/CaseNotes.razor @@ -9,9 +9,12 @@ { - - - +
+ + + + New note +
@foreach(var note in _notes.OrderByDescending(x => x.Created)) { @@ -50,18 +53,6 @@ }
- - - @if(_notes.Length is 0) - { - Nothing to see here. Why not add a note yourself? - } - else - { - You're all caught up! - } - - } @code {