mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2025-04-01 02:03:42 -04:00
shrink display selector controls
This commit is contained in:
parent
b0b650b6b9
commit
1686196cfb
@ -51,6 +51,7 @@ const DisplaySelector = (props: Props) => {
|
|||||||
labelId="split90k-label"
|
labelId="split90k-label"
|
||||||
label="Max video duration"
|
label="Max video duration"
|
||||||
id="split90k"
|
id="split90k"
|
||||||
|
size="small"
|
||||||
value={props.split90k}
|
value={props.split90k}
|
||||||
onChange={(e) => props.setSplit90k(e.target.value)}
|
onChange={(e) => props.setSplit90k(e.target.value)}
|
||||||
displayEmpty
|
displayEmpty
|
||||||
@ -70,6 +71,7 @@ const DisplaySelector = (props: Props) => {
|
|||||||
control={
|
control={
|
||||||
<Checkbox
|
<Checkbox
|
||||||
checked={props.trimStartAndEnd}
|
checked={props.trimStartAndEnd}
|
||||||
|
size="small"
|
||||||
onChange={(_, checked: boolean) =>
|
onChange={(_, checked: boolean) =>
|
||||||
props.setTrimStartAndEnd(checked)
|
props.setTrimStartAndEnd(checked)
|
||||||
}
|
}
|
||||||
@ -84,6 +86,7 @@ const DisplaySelector = (props: Props) => {
|
|||||||
control={
|
control={
|
||||||
<Checkbox
|
<Checkbox
|
||||||
checked={props.timestampTrack}
|
checked={props.timestampTrack}
|
||||||
|
size="small"
|
||||||
onChange={(_, checked: boolean) => props.setTimestampTrack(checked)}
|
onChange={(_, checked: boolean) => props.setTimestampTrack(checked)}
|
||||||
name="timestamp-track"
|
name="timestamp-track"
|
||||||
/>
|
/>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user