diff --git a/src/card-condition.ts b/src/card-condition.ts index f5dc66b5..086e9ebb 100644 --- a/src/card-condition.ts +++ b/src/card-condition.ts @@ -3,8 +3,8 @@ import type { OverrideConfigurationKey, RawFrigateCardConfig, } from './types'; -import { merge, cloneDeep } from 'lodash-es'; import { HassEntities } from 'home-assistant-js-websocket'; +import { cloneDeep, merge } from 'lodash-es'; export interface ConditionState { view?: string; diff --git a/src/components/elements.ts b/src/components/elements.ts index 0396882a..11e6648e 100644 --- a/src/components/elements.ts +++ b/src/components/elements.ts @@ -57,7 +57,7 @@ interface HuiConditionalElement extends HTMLElement { // A small wrapper around a HA conditional element used to render a set of // picture elements. @customElement('frigate-card-elements-core') -class FrigateCardElementsCore extends LitElement { +export class FrigateCardElementsCore extends LitElement { @property({ attribute: false }) protected elements: PictureElements;