feat: Improve automation flow and add ontime playback actions (#2025) (#2024)

* fix: prevent add filter from submitting form

* refactor: event clarifies whether automations exist but are disabled

* refactor: improve readability of automation form

* refactor: add affordance for field warnings

* refactor: improve visibility of automation off state

* refactor: apply warning styles to other feature toggles

* Adding playback actions to automations (#2024)

* adding intial automation actions

* cleaning up

* fixing formatting

* ran oxfmt

* switching action names to playback- to match the dropdown strings

* fixing flicker that was caused by scroll arrows gettting unmounted

---------

Co-authored-by: Cameron Slipp <cdslipp@gmail.com>
This commit is contained in:
Carlos Valente
2026-03-24 09:13:37 +01:00
committed by GitHub
parent cf206e6220
commit 95536902f5
22 changed files with 346 additions and 89 deletions
@@ -43,6 +43,7 @@ interface RundownEventProps {
title: string;
note: string;
delay: number;
automationsEnabled?: boolean;
colour: string;
isPast: boolean;
isNext: boolean;
@@ -76,6 +77,7 @@ export default function RundownEvent({
title,
note,
delay,
automationsEnabled,
colour,
isPast,
isNext,
@@ -302,6 +304,7 @@ export default function RundownEvent({
title={title}
note={note}
delay={delay}
automationsEnabled={automationsEnabled}
isNext={isNext}
skip={skip}
loaded={loaded}