From a1a3114a27e4ffab9f9c450395c6dd8a964530d3 Mon Sep 17 00:00:00 2001 From: Julius Volz Date: Tue, 25 Nov 2025 14:44:31 +0100 Subject: [PATCH] Hide alert annotations by default See https://github.com/prometheus/prometheus/issues/16911 This will create a denser layout by default, enabling people to see more information on the page without having to discover the global settings menu. Signed-off-by: Julius Volz --- web/ui/mantine-ui/src/state/settingsSlice.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/ui/mantine-ui/src/state/settingsSlice.ts b/web/ui/mantine-ui/src/state/settingsSlice.ts index 8b4a33bf76..a3e133380a 100644 --- a/web/ui/mantine-ui/src/state/settingsSlice.ts +++ b/web/ui/mantine-ui/src/state/settingsSlice.ts @@ -102,7 +102,7 @@ export const initialState: Settings = { ), showAnnotations: initializeFromLocalStorage( localStorageKeyShowAnnotations, - true + false ), showQueryWarnings: initializeFromLocalStorage( localStorageKeyShowQueryWarnings,