From c399da586ef71189981b8886d6706039af495456 Mon Sep 17 00:00:00 2001 From: Simon Lamon <32477463+silamon@users.noreply.github.com> Date: Wed, 27 Dec 2023 11:00:48 +0100 Subject: [PATCH] Increase battery column width (#19143) --- src/panels/config/devices/ha-config-devices-dashboard.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/panels/config/devices/ha-config-devices-dashboard.ts b/src/panels/config/devices/ha-config-devices-dashboard.ts index c586252c7d..ca7c4fde98 100644 --- a/src/panels/config/devices/ha-config-devices-dashboard.ts +++ b/src/panels/config/devices/ha-config-devices-dashboard.ts @@ -363,8 +363,8 @@ export class HaConfigDeviceDashboard extends LitElement { sortable: true, filterable: true, type: "numeric", - width: narrow ? "95px" : "15%", - maxWidth: "95px", + width: narrow ? "105px" : "15%", + maxWidth: "105px", valueColumn: "battery_level", template: (device) => { const batteryEntityPair = device.battery_entity;