Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
piitaya committed Jul 15, 2024
1 parent 99be781 commit 68665cf
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/panels/lovelace/badges/hui-view-badges.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const BADGE_SORTABLE_OPTIONS: HaSortableOptions = {
} as HaSortableOptions;

@customElement("hui-view-badges")
export class HuiStateLabelBadge extends LitElement {
export class HuiViewBadges extends LitElement {
@property({ attribute: false }) public hass!: HomeAssistant;

@property({ attribute: false }) public lovelace!: Lovelace;
Expand Down Expand Up @@ -171,3 +171,9 @@ export class HuiStateLabelBadge extends LitElement {
`;
}
}

declare global {
interface HTMLElementTagNameMap {
"hui-view-badges": HuiViewBadges;
}
}

0 comments on commit 68665cf

Please sign in to comment.