Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
ildar170975 authored Feb 18, 2025
1 parent d2e5fc3 commit ab3af60
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/restriction-card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class RestrictionCard extends LitElement implements LovelaceCard {
class=${classMap({
locked: !Boolean(this._unlocked) && !Boolean(isBlocked),
blocked: Boolean(isBlocked),
"has-row": Boolean(this._config.row),
'has-row': Boolean(this._config.row),
})}
>
<ha-icon
Expand All @@ -123,8 +123,8 @@ class RestrictionCard extends LitElement implements LovelaceCard {
: this._config.locked_icon!}
id="lock"
class=${classMap({
"icon-blocked": Boolean(isBlocked),
"icon-in-row": Boolean(this._config.row),
'icon-blocked': Boolean(isBlocked),
'icon-in-row': Boolean(this._config.row),
})}
></ha-icon>
</div>
Expand Down

0 comments on commit ab3af60

Please sign in to comment.