From 8737ab077b51e9fef0da30fbd880d40cf8e4a54a Mon Sep 17 00:00:00 2001 From: "SPRINX0\\prochazka" Date: Fri, 13 Jun 2025 15:13:50 +0200 Subject: [PATCH] SYNC: fixed status bar color --- packages/web/src/utility/useConnectionColor.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/web/src/utility/useConnectionColor.ts b/packages/web/src/utility/useConnectionColor.ts index 5bcd7f617..649f46597 100644 --- a/packages/web/src/utility/useConnectionColor.ts +++ b/packages/web/src/utility/useConnectionColor.ts @@ -48,9 +48,10 @@ export function useConnectionColor( useConnectionFallback = true ) { const connections = useConnectionList(); - return derived([connections, currentThemeDefinition], ([$connections, $themeDef]) => + return derived([connections, currentThemeDefinition, cloudConnectionsStore], ([$connections, $themeDef, $cloudConnectionsStore]) => getConnectionColor( $connections, + $cloudConnectionsStore, dbid, themeType ?? $themeDef?.themeType, colorIndex,