Skip to content

Commit d54fe8f

Browse files
author
Sara Gowen
committed
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
1 parent a6e58d7 commit d54fe8f

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

PocketDDD.BlazorClient/PocketDDD.BlazorClient/Features/Home/Components/EventData.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
@sessionItem.session.Title
3232
</MudText>
3333
<MudText Typo="Typo.subtitle2">@sessionItem.session.SpeakerName</MudText>
34-
<MudText Typo="Typo.subtitle2">@sessionItem.session.TrackName (@sessionItem.session.RoomName)</MudText>
34+
<MudText Typo="Typo.subtitle2">@sessionItem.session.RoomName</MudText>
3535
</MudPaper>
3636
</MudListItem>
3737

PocketDDD.BlazorClient/PocketDDD.BlazorClient/Features/Session/Components/Session.razor

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515
{
1616
<MudText Typo="Typo.h5" Class="ma-2">
1717
@State.Value.Session.From.ToString("h:mm")
18-
@State.Value.Session.From.ToString("tt").ToLowerInvariant(),
19-
@State.Value.Session.TrackName
18+
@State.Value.Session.From.ToString("tt").ToLowerInvariant()
2019
</MudText>
2120

2221
<MudText Typo="Typo.subtitle1" Class="ma-2">

0 commit comments

Comments
 (0)