Browse Source

add schedule file names to playouts table (#2513)

pull/2514/head
Jason Dove 3 months ago committed by GitHub
parent
commit
7059669023
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 13
      ErsatzTV/Pages/Playouts.razor

1
CHANGELOG.md

@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). @@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Add `MediaItem_Path` for movies, episodes, music videos and other videos
- Add `get_directory_name` and `get_filename_without_extension` functions for path processing
- Add `Block Playout Troubleshooting` tool to help investigate block playout history
- Add sequential schedule file and scripted schedule file names to playouts table
### Fixed
- Fix NVIDIA startup errors on arm64

13
ErsatzTV/Pages/Playouts.razor

@ -86,7 +86,18 @@ @@ -86,7 +86,18 @@
</HeaderContent>
<RowTemplate>
<MudTd>@context.ChannelNumber - @context.ChannelName</MudTd>
<MudTd Class="d-none d-md-table-cell">@context.ScheduleName</MudTd>
<MudTd Class="d-none d-md-table-cell">
@if (!string.IsNullOrWhiteSpace(context.ScheduleName))
{
@context.ScheduleName
}
else if (!string.IsNullOrWhiteSpace(context.ScheduleFile))
{
<MudTooltip Text="@context.ScheduleFile">
@Path.GetFileName(context.ScheduleFile)
</MudTooltip>
}
</MudTd>
<MudTd Class="d-none d-md-table-cell">
@switch (context.ScheduleKind)
{

Loading…
Cancel
Save