Skip to content

Commit

Permalink
Changing default throttle interval to hour
Browse files Browse the repository at this point in the history
  • Loading branch information
ymao1 committed Dec 10, 2020
1 parent 85ed885 commit dd3b29a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export const AlertForm = ({
alert.throttle ? getDurationNumberInItsUnit(alert.throttle) : null
);
const [alertThrottleUnit, setAlertThrottleUnit] = useState<string>(
alert.throttle ? getDurationUnitValue(alert.throttle) : 'm'
alert.throttle ? getDurationUnitValue(alert.throttle) : 'h'
);
const [defaultActionGroupId, setDefaultActionGroupId] = useState<string | undefined>(undefined);
const [alertTypesIndex, setAlertTypesIndex] = useState<AlertTypeIndex | null>(null);
Expand Down

0 comments on commit dd3b29a

Please sign in to comment.