Codereview fixes.

This commit is contained in:
Dermot Duffy
2022-05-01 12:53:30 -07:00
parent 08ce8e8419
commit 050399a517
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -3,8 +3,8 @@ import type {
OverrideConfigurationKey, OverrideConfigurationKey,
RawFrigateCardConfig, RawFrigateCardConfig,
} from './types'; } from './types';
import { merge, cloneDeep } from 'lodash-es';
import { HassEntities } from 'home-assistant-js-websocket'; import { HassEntities } from 'home-assistant-js-websocket';
import { cloneDeep, merge } from 'lodash-es';
export interface ConditionState { export interface ConditionState {
view?: string; view?: string;
+1 -1
View File
@@ -57,7 +57,7 @@ interface HuiConditionalElement extends HTMLElement {
// A small wrapper around a HA conditional element used to render a set of // A small wrapper around a HA conditional element used to render a set of
// picture elements. // picture elements.
@customElement('frigate-card-elements-core') @customElement('frigate-card-elements-core')
class FrigateCardElementsCore extends LitElement { export class FrigateCardElementsCore extends LitElement {
@property({ attribute: false }) @property({ attribute: false })
protected elements: PictureElements; protected elements: PictureElements;