diff --git a/apps/client/src/features/app-settings/panel/automations-panel/AutomationsList.tsx b/apps/client/src/features/app-settings/panel/automations-panel/AutomationsList.tsx
index 42fb3e47b..387c76ef9 100644
--- a/apps/client/src/features/app-settings/panel/automations-panel/AutomationsList.tsx
+++ b/apps/client/src/features/app-settings/panel/automations-panel/AutomationsList.tsx
@@ -145,13 +145,20 @@ export default function AutomationsList({
| {automation.title} |
-
- {lifecycles.length === 0 ? (
- Never runs
- ) : (
- lifecycles.map((cycle) => {getLifecycleLabel(cycle)})
- )}
-
+ {/*
+ * Only global triggers are visible here: an automation can also be attached to
+ * single events, which live in the rundown. An empty cell is therefore not the
+ * same as never running, so it says nothing rather than claiming that.
+ */}
+ {lifecycles.length === 0 ? (
+ —
+ ) : (
+
+ {lifecycles.map((cycle) => (
+ {getLifecycleLabel(cycle)}
+ ))}
+
+ )}
|
{automation.filters.length === 0 ? (
|