Skip to content

Commit

Permalink
Remove Track name from UI
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Sara Gowen committed Apr 25, 2024
1 parent a6e58d7 commit d54fe8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
@sessionItem.session.Title
</MudText>
<MudText Typo="Typo.subtitle2">@sessionItem.session.SpeakerName</MudText>
<MudText Typo="Typo.subtitle2">@sessionItem.session.TrackName (@sessionItem.session.RoomName)</MudText>
<MudText Typo="Typo.subtitle2">@sessionItem.session.RoomName</MudText>
</MudPaper>
</MudListItem>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
{
<MudText Typo="Typo.h5" Class="ma-2">
@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()
</MudText>

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

0 comments on commit d54fe8f

Please sign in to comment.