We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf84734 commit 1d6a22eCopy full SHA for 1d6a22e
packages/webui/src/client/ui/AfterBroadcastForm.tsx
@@ -29,7 +29,7 @@ const DEFAULT_STATE = {
29
30
export function AfterBroadcastForm({ playlist }: Readonly<{ playlist: DBRundownPlaylist }>): JSX.Element {
31
const { t } = useTranslation()
32
- const shouldDeactivateRundown = isLoopRunning(playlist)
+ const shouldDeactivateRundown = !isLoopRunning(playlist)
33
const [problems, setProblems] = useState<ProblemType>(DEFAULT_STATE.problems)
34
const [description, setDescription] = useState<string[]>(DEFAULT_STATE.description.slice())
35
const [userName, setUserName] = useState<string>(DEFAULT_STATE.userName)
0 commit comments