From 00c423aa052b5637303db59f713033bf1a252afb Mon Sep 17 00:00:00 2001 From: BrettS Date: Wed, 9 Jul 2025 17:49:00 +0200 Subject: [PATCH] Fix SoC slider displayed for standard fahrzeug --- .../modules/web_themes/koala/source/src/stores/mqtt-store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/modules/web_themes/koala/source/src/stores/mqtt-store.ts b/packages/modules/web_themes/koala/source/src/stores/mqtt-store.ts index c123b96f8b..9b5a356c34 100644 --- a/packages/modules/web_themes/koala/source/src/stores/mqtt-store.ts +++ b/packages/modules/web_themes/koala/source/src/stores/mqtt-store.ts @@ -1737,7 +1737,7 @@ export const useMqttStore = defineStore('mqtt', () => { return computed(() => { const vehicleId = chargePointConnectedVehicleInfo(chargePointId).value?.id; - if (!vehicleId) return undefined; + if (vehicleId === undefined) return undefined; const socConfig = getValue.value( `openWB/vehicle/${vehicleId}/soc_module/config`, ) as { type: string } | null;