diff --git a/frontend-modern/src/components/Alerts/ThresholdsTable.tsx b/frontend-modern/src/components/Alerts/ThresholdsTable.tsx index 5c4846bce..fd9b80c6c 100644 --- a/frontend-modern/src/components/Alerts/ThresholdsTable.tsx +++ b/frontend-modern/src/components/Alerts/ThresholdsTable.tsx @@ -59,7 +59,6 @@ interface ThresholdsTableProps { export function ThresholdsTable(props: ThresholdsTableProps) { const [searchTerm, setSearchTerm] = createSignal(''); - const [showGlobalSettings, setShowGlobalSettings] = createSignal(false); const [editingId, setEditingId] = createSignal(null); const [editingThresholds, setEditingThresholds] = createSignal>({}); @@ -582,28 +581,16 @@ export function ThresholdsTable(props: ThresholdsTableProps) {
{/* Global Settings Section */}
-
setShowGlobalSettings(!showGlobalSettings())} - > +

Global Default Thresholds

Default thresholds that apply to all resources unless overridden

- - -
- -
+
{/* Threshold table */}

@@ -859,7 +846,6 @@ export function ThresholdsTable(props: ThresholdsTableProps) {

-
{/* Search Bar */}