Skip to content

Commit

Permalink
Fix config defaults in admin console (#973)
Browse files Browse the repository at this point in the history
* Update snapshots

* Fix config defaults
  • Loading branch information
streamer45 authored Feb 26, 2025
1 parent 1e0f3e7 commit 032bc3c
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const MaxRecordingDuration = (props: CustomComponentProps) => {
className='form-control'
type={'number'}
placeholder={placeholder}
value={props.value}
value={props.value ?? 60}
onChange={handleChange}
disabled={props.disabled}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const RecordingQuality = (props: CustomComponentProps) => {
data-testid={props.id + 'dropdown'}
className='form-control'
id={props.id}
value={props.value}
value={props.value ?? 'medium'}
onChange={handleChange}
disabled={props.disabled}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const TranscriberModelSize = (props: CustomComponentProps) => {
data-testid={props.id + 'dropdown'}
className='form-control'
id={props.id}
value={props.value}
value={props.value ?? 'base'}
onChange={handleChange}
disabled={props.disabled}
>
Expand Down

0 comments on commit 032bc3c

Please sign in to comment.