From d54fe8fdc9042796e07c26d7b2e578536c8fcb9f Mon Sep 17 00:00:00 2001 From: Sara Gowen Date: Fri, 26 Apr 2024 00:04:19 +0100 Subject: [PATCH] Remove Track name from UI In 2024 we added the track name to the room name in sessionize, this meant that we didn't need the track name specifically in the UI --- .../Features/Home/Components/EventData.razor | 2 +- .../Features/Session/Components/Session.razor | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/PocketDDD.BlazorClient/PocketDDD.BlazorClient/Features/Home/Components/EventData.razor b/PocketDDD.BlazorClient/PocketDDD.BlazorClient/Features/Home/Components/EventData.razor index 3f11795..32844c9 100644 --- a/PocketDDD.BlazorClient/PocketDDD.BlazorClient/Features/Home/Components/EventData.razor +++ b/PocketDDD.BlazorClient/PocketDDD.BlazorClient/Features/Home/Components/EventData.razor @@ -31,7 +31,7 @@ @sessionItem.session.Title @sessionItem.session.SpeakerName - @sessionItem.session.TrackName (@sessionItem.session.RoomName) + @sessionItem.session.RoomName diff --git a/PocketDDD.BlazorClient/PocketDDD.BlazorClient/Features/Session/Components/Session.razor b/PocketDDD.BlazorClient/PocketDDD.BlazorClient/Features/Session/Components/Session.razor index d77adb3..6d3e049 100644 --- a/PocketDDD.BlazorClient/PocketDDD.BlazorClient/Features/Session/Components/Session.razor +++ b/PocketDDD.BlazorClient/PocketDDD.BlazorClient/Features/Session/Components/Session.razor @@ -15,8 +15,7 @@ { @State.Value.Session.From.ToString("h:mm") - @State.Value.Session.From.ToString("tt").ToLowerInvariant(), - @State.Value.Session.TrackName + @State.Value.Session.From.ToString("tt").ToLowerInvariant()