From 942eb6351c526c1be085724c77466a9b35498f87 Mon Sep 17 00:00:00 2001 From: Evan Purkhiser Date: Fri, 22 Nov 2024 17:02:14 -0500 Subject: [PATCH] ref(crons): Add 15s and 25s tick marks on timeout slider (#81216) image --- static/app/views/alerts/rules/uptime/uptimeAlertForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/app/views/alerts/rules/uptime/uptimeAlertForm.tsx b/static/app/views/alerts/rules/uptime/uptimeAlertForm.tsx index 5a0371b73a4a5..082b2b030e86a 100644 --- a/static/app/views/alerts/rules/uptime/uptimeAlertForm.tsx +++ b/static/app/views/alerts/rules/uptime/uptimeAlertForm.tsx @@ -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)}