From: Daniel Karbach Date: Mon, 24 Jul 2023 12:01:25 +0000 (+0200) Subject: show event title if episode has none X-Git-Url: https://git.localhorst.tv/?a=commitdiff_plain;h=442732627373739adf18518b6bbfbc305356f53f;p=alttp.git show event title if episode has none --- diff --git a/resources/js/components/episodes/Item.js b/resources/js/components/episodes/Item.js index 3545e77..9acb95d 100644 --- a/resources/js/components/episodes/Item.js +++ b/resources/js/components/episodes/Item.js @@ -55,9 +55,9 @@ const Item = ({ episode, onAddRestream, onApply, onEditRestream, user }) => {
- {episode.title ? + {episode.title || episode.event ?
- {episode.title} + {episode.title || episode.event.title}
: null} {episode.comment ?