Skip to content

Commit

Permalink
fix(ui): TE-2594 do not allow negative value for time period compare …
Browse files Browse the repository at this point in the history
…in anomaly view (#1726)
  • Loading branch information
nalin-patidar authored Dec 17, 2024
1 parent 665118e commit 7ea28ec
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ export const PastDurationPicker: FunctionComponent<PastDurationPickerProps> = ({
{!!children && <Grid item>{children}</Grid>}
<Grid item>
<TextField
inputProps={{
min: 1,
}}
size="small"
type="number"
value={offsetValue}
Expand Down

0 comments on commit 7ea28ec

Please sign in to comment.