From 4a3c20e7fe53a826168d3af385f7d3990bc25977 Mon Sep 17 00:00:00 2001 From: rakadu1 Date: Fri, 5 Sep 2025 15:13:53 +0530 Subject: [PATCH] Custom TTC default values changed. --- steps/index.html | 6 +++--- steps/src/state.js | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/steps/index.html b/steps/index.html index b8c1cfa..391e86d 100644 --- a/steps/index.html +++ b/steps/index.html @@ -203,7 +203,7 @@
- s
@@ -211,7 +211,7 @@
- s
@@ -219,7 +219,7 @@
- s
diff --git a/steps/src/state.js b/steps/src/state.js index b537e45..0d9ef91 100644 --- a/steps/src/state.js +++ b/steps/src/state.js @@ -32,9 +32,9 @@ export const appState = { useCustomTtcScheme: false, // Flag to switch between default and custom customTtcScheme: { // Default values match the UI - critical: { time: 5, color: "#ff0000" }, - high: { time: 10, color: "#ffa500" }, - medium: { time: 30, color: "#BA8E23" }, + critical: { time: 1, color: "#ff0000" }, + high: { time: 2, color: "#ffa500" }, + medium: { time: 3, color: "#BA8E23" }, low: { color: "#00ff00" }, // Add this new line }, };