mirror of
https://github.com/cpvalente/ontime.git
synced 2026-09-11 09:09:34 +00:00
* 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:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user