Various build extension fixes.

This commit is contained in:
Dermot Duffy
2021-10-24 07:57:28 -07:00
parent f089cc54e5
commit e5b1deb334
19 changed files with 87 additions and 86 deletions
+2 -2
View File
@@ -10,8 +10,8 @@
// ====================================================================
import { TemplateResult, html } from 'lit';
import { customElement } from 'lit/decorators';
import { dispatchMediaLoadEvent } from '../common';
import { customElement } from 'lit/decorators.js';
import { dispatchMediaLoadEvent } from '../common.js';
customElements.whenDefined('ha-camera-stream').then(() => {
// ========================================================================================
+2 -2
View File
@@ -13,8 +13,8 @@ import {
TemplateResult,
html,
} from 'lit';
import { customElement } from 'lit/decorators';
import { dispatchMediaLoadEvent, dispatchPauseEvent, dispatchPlayEvent } from '../common';
import { customElement } from 'lit/decorators.js';
import { dispatchMediaLoadEvent, dispatchPauseEvent, dispatchPlayEvent } from '../common.js';
customElements.whenDefined("ha-hls-player").then(() => {
@customElement("frigate-card-ha-hls-player")