Remove extending of HassLocalizeMixin as it is not needed (#1847)
parent
cf8899fcbe
commit
06bf134bd4
|
@ -2,7 +2,6 @@ import { html, LitElement } from "@polymer/lit-element";
|
||||||
|
|
||||||
import "../../../components/ha-card.js";
|
import "../../../components/ha-card.js";
|
||||||
|
|
||||||
import { HassLocalizeLitMixin } from "../../../mixins/lit-localize-mixin";
|
|
||||||
import { LovelaceCard, LovelaceConfig } from "../types.js";
|
import { LovelaceCard, LovelaceConfig } from "../types.js";
|
||||||
|
|
||||||
interface Config extends LovelaceConfig {
|
interface Config extends LovelaceConfig {
|
||||||
|
@ -11,7 +10,7 @@ interface Config extends LovelaceConfig {
|
||||||
url: string;
|
url: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export class HuiIframeCard extends HassLocalizeLitMixin(LitElement)
|
export class HuiIframeCard extends LitElement
|
||||||
implements LovelaceCard {
|
implements LovelaceCard {
|
||||||
protected config?: Config;
|
protected config?: Config;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue