Skip to content

Commit

Permalink
🐛 Fixed center state misalignment
Browse files Browse the repository at this point in the history
  • Loading branch information
kalkih committed May 30, 2019
1 parent 9c8e21d commit fe44e4d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -268,9 +268,7 @@ class MiniGraphCard extends LitElement {
</span>
${this.renderStateTime()}
</div>
<div class="states--secondary">
${this.config.entities.map((ent, i) => this.renderState(ent, i))}
</div>
<div class="states--secondary">${this.config.entities.map((ent, i) => this.renderState(ent, i))}</div>
${this.config.align_icon === 'state' ? this.renderIcon() : ''}
</div>
`;
Expand Down

0 comments on commit fe44e4d

Please sign in to comment.