Skip to content
This repository has been archived by the owner on Nov 12, 2024. It is now read-only.

hide show status if show is not in production #907

Merged
merged 3 commits into from
Apr 14, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
hide show status if show is not in production
panphill committed Mar 30, 2022

Verified

This commit was signed with the committer’s verified signature. The key has expired.
kylekurz Kyle Kurz
commit c5c337f33b6ddbf3b7ea1e6a8d8631d7b1a7a3b6
Original file line number Diff line number Diff line change
@@ -842,7 +842,8 @@ private fun InfoPanels(
if (show.runtime != null) {
RuntimeInfoPanel(show.runtime!!)
}
if (show.airsDay != null && show.airsTime != null && show.airsTimeZone != null) {
if (show.airsDay != null && show.airsTime != null && show.airsTimeZone != null
&& show.status == ShowStatus.IN_PRODUCTION) {
AirsInfoPanel(show)
}
}