Browse Source

ref(crons): Add 15s and 25s tick marks on timeout slider (#81216)

<img width="817" alt="image"
src="https://github.com/user-attachments/assets/e87c99ea-3c93-4b73-8e00-a99a70525342">
Evan Purkhiser 3 months ago
parent
commit
942eb6351c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      static/app/views/alerts/rules/uptime/uptimeAlertForm.tsx

+ 1 - 1
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)}