Skip to content

Commit

Permalink
chore: missing defeult property
Browse files Browse the repository at this point in the history
  • Loading branch information
nytamin committed Feb 22, 2024
1 parent d4495c2 commit 845b19d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export class OutputSettingsStore {
marginVertical: 1,

activeRundownPlaylistId: null,
savedSpeed: 0,
})

constructor() {
Expand Down
1 change: 1 addition & 0 deletions packages/apps/client/src/stores/OutputSettingsStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export class OutputSettingsStore {
marginHorizontal: 0,
marginVertical: 0,
activeRundownPlaylistId: null,
savedSpeed: 0,
})

initialized = false
Expand Down
1 change: 1 addition & 0 deletions packages/shared/model/src/model/OutputSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@ export const OutputSettingsSchema = z.object({
/** If set, defines the rundown that is to be displayed in the Output */
activeRundownPlaylistId: ZodProtectedStringOrNull<RundownPlaylistId>(),

/** Saved speed, used so that an operator can set and recall/use a speed for the prompter.*/
savedSpeed: z.number(),
})

0 comments on commit 845b19d

Please sign in to comment.