shrink display selector controls

This commit is contained in:
Scott Lamb 2021-03-26 19:43:50 -07:00
parent b0b650b6b9
commit 1686196cfb
1 changed files with 3 additions and 0 deletions

View File

@ -51,6 +51,7 @@ const DisplaySelector = (props: Props) => {
labelId="split90k-label"
label="Max video duration"
id="split90k"
size="small"
value={props.split90k}
onChange={(e) => props.setSplit90k(e.target.value)}
displayEmpty
@ -70,6 +71,7 @@ const DisplaySelector = (props: Props) => {
control={
<Checkbox
checked={props.trimStartAndEnd}
size="small"
onChange={(_, checked: boolean) =>
props.setTrimStartAndEnd(checked)
}
@ -84,6 +86,7 @@ const DisplaySelector = (props: Props) => {
control={
<Checkbox
checked={props.timestampTrack}
size="small"
onChange={(_, checked: boolean) => props.setTimestampTrack(checked)}
name="timestamp-track"
/>