Skip to content

Commit d5c30fa

Browse files
authored
Update predbat-table-card.js
Fix for FreezeExport not showing iconography
1 parent a512c40 commit d5c30fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

predbat-table-card.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,7 @@ class PredbatTableCard extends HTMLElement {
625625
if(theItem.value.includes("ⅎ"))
626626
additionalArrow += `<ha-icon icon="mdi:hand-back-right-outline" title="${tooltip}" style="--mdc-icon-size: 22px;"></ha-icon>`;
627627

628-
} else if(newContent === "FreezeDis" || newContent === "FreezeChrg" || newContent === "HoldChrg" || newContent === "NoCharge"){
628+
} else if(newContent === "FreezeDis" || newContent === "FreezeChrg" || newContent === "HoldChrg" || newContent === "NoCharge" || newContent === "FreezeExp"){
629629
// use force discharge icon
630630
additionalArrow = '<ha-icon icon="mdi:battery-lock" style="" title="Charging Paused"></ha-icon>';
631631
newCell.setAttribute('style', `color: ${theItem.color}`);

0 commit comments

Comments
 (0)