Fix missing imports (2 of 2) (#19417)

This commit is contained in:
Steve Repsher
2024-01-16 09:01:34 -05:00
committed by GitHub
parent 1f2683dd56
commit bb4f09ad9a
20 changed files with 50 additions and 24 deletions

View File

@@ -2,8 +2,10 @@ import { HassEntity } from "home-assistant-js-websocket";
import { CSSResultGroup, LitElement, css, html, nothing } from "lit";
import { customElement, property, state } from "lit/decorators";
import { computeStateName } from "../../../common/entity/compute_state_name";
import "../../../components/entity/state-badge";
import { isUnavailableState } from "../../../data/entity";
import { SENSOR_DEVICE_CLASS_TIMESTAMP } from "../../../data/sensor";
import "../../../panels/lovelace/components/hui-timestamp-display";
import { HomeAssistant } from "../../../types";
@customElement("entity-preview-row")