Skip to content

Commit

Permalink
Fix camera regression (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
junalmeida authored Apr 13, 2023
1 parent 9863739 commit 6316805
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "minimalistic-area-card",
"version": "1.1.12",
"version": "1.1.13",
"description": "Minimalistic Area Card for Home Assistant",
"keywords": [
"home-assistant",
Expand Down
3 changes: 2 additions & 1 deletion src/minimalistic-area-card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,8 @@ class MinimalisticAreaCard extends LitElement {
"darken"
: this.config.darken_image === undefined ? false : this.config.darken_image,
})} />` : null}
${this.config.camera_image ? html`<div class="camera" class=${classMap({
${this.config.camera_image ? html`<div class=${classMap({
"camera": true,
"darken"
: this.config.darken_image === undefined ? false : this.config.darken_image,
})}>
Expand Down

0 comments on commit 6316805

Please sign in to comment.