diff --git a/frontend/src/features/admin/junctions/components/JunctionChain.tsx b/frontend/src/features/admin/junctions/components/JunctionChain.tsx index ed0af94..0341b89 100644 --- a/frontend/src/features/admin/junctions/components/JunctionChain.tsx +++ b/frontend/src/features/admin/junctions/components/JunctionChain.tsx @@ -46,7 +46,8 @@ function conditionsHint(element: JunctionElementDto, t: Translate) { if (c && c.minMinutesBetween > 0) parts.push(t('admin.junctions.badgeInterval', { minutes: c.minMinutesBetween })) if (c?.timeWindow) parts.push(`${c.timeWindow.from.slice(0, 5)}–${c.timeWindow.to.slice(0, 5)}`) - if (c?.dayparts?.length) parts.push(c.dayparts.map((d) => t(`admin.channels.dayparts.${d}`)).join('/')) + if (c?.dayparts?.length) + parts.push(c.dayparts.map((d) => t(`admin.channels.dayparts.${d}`)).join('/')) return parts.join(' · ') }