Skip to content

Commit

Permalink
ref(crons): Add 15s and 25s tick marks on timeout slider (#81216)
Browse files Browse the repository at this point in the history
  • Loading branch information
evanpurkhiser authored Nov 22, 2024
1 parent a67afa0 commit 942eb63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/app/views/alerts/rules/uptime/uptimeAlertForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export function UptimeAlertForm({project, handleDelete, rule}: Props) {
min={1000}
max={30_000}
step={250}
tickValues={[1_000, 5_000, 10_000, 20_000, 30_000]}
tickValues={[1_000, 5_000, 10_000, 15_000, 20_000, 25_000, 30_000]}
defaultValue={5_000}
showTickLabels
formatLabel={value => getDuration((value || 0) / 1000, 2, true)}
Expand Down

0 comments on commit 942eb63

Please sign in to comment.