Skip to content

Commit

Permalink
Always return a value
Browse files Browse the repository at this point in the history
  • Loading branch information
piitaya committed Oct 16, 2023
1 parent a1024fc commit b920cda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/panels/lovelace/cards/hui-tile-card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ export class HuiTileCard extends LitElement implements LovelaceCard {
.filter(Boolean);

if (!values.length) {
return nothing;
return "-";
}

return html`
Expand Down

0 comments on commit b920cda

Please sign in to comment.