This commit is contained in:
jayjojayson 2026-02-17 23:40:08 +01:00
parent 2f43a045c8
commit 7f6534880d
3 changed files with 3 additions and 3 deletions

View file

@ -20,7 +20,7 @@ export default {
"editor.battery_soc_label": "Ladestand (%)", "editor.battery_soc_label": "Ladestand (%)",
"editor.house_total_title": "🏠 Gesamtverbrauch (optional)", "editor.house_total_title": "🏠 Gesamtverbrauch (optional)",
"editor.house_sensor_label": "Sensor für Hausverbrauch (optional)", "editor.house_sensor_label": "Sensor für Hausverbrauch (optional)",
"editor.house_sensor_hint": "Wird benötigt, damit das Haus-Icon anklickbar ist.", "editor.house_sensor_hint": "Wird benötigt, damit das Haus-Icon anklickbar ist (compact view).",
"editor.consumer_1_title": "🚗 Links (Lila)", "editor.consumer_1_title": "🚗 Links (Lila)",
"editor.consumer_2_title": "♨️ Mitte (Orange)", "editor.consumer_2_title": "♨️ Mitte (Orange)",
"editor.consumer_3_title": "🏊 Rechts (Türkis)", "editor.consumer_3_title": "🏊 Rechts (Türkis)",

View file

@ -20,7 +20,7 @@ export default {
"editor.battery_soc_label": "State of Charge (%)", "editor.battery_soc_label": "State of Charge (%)",
"editor.house_total_title": "🏠 Total Consumption (optional)", "editor.house_total_title": "🏠 Total Consumption (optional)",
"editor.house_sensor_label": "Sensor for House Consumption (optional)", "editor.house_sensor_label": "Sensor for House Consumption (optional)",
"editor.house_sensor_hint": "Required to make the house icon clickable.", "editor.house_sensor_hint": "Required to make the house icon clickable (compact view).",
"editor.consumer_1_title": "🚗 Left (Purple)", "editor.consumer_1_title": "🚗 Left (Purple)",
"editor.consumer_2_title": "♨️ Center (Orange)", "editor.consumer_2_title": "♨️ Center (Orange)",
"editor.consumer_3_title": "🏊 Right (Cyan)", "editor.consumer_3_title": "🏊 Right (Cyan)",

View file

@ -737,7 +737,7 @@ console.log(
const house = solarToHouse + gridToHouse + batteryDischarge; const house = solarToHouse + gridToHouse + batteryDischarge;
const isTopArcActive = (solarToBatt > 0); const isTopArcActive = (solarToBatt > 0);
const topShift = isTopArcActive ? 0 : 50; const topShift = (isTopArcActive || (!hideInactive && hasSolar && hasBattery)) ? 0 : 50;
let baseHeight = anyBottomVisible ? 480 : 340; let baseHeight = anyBottomVisible ? 480 : 340;
const contentHeight = baseHeight - topShift; const contentHeight = baseHeight - topShift;