Skip to content

Commit

Permalink
chore: updated lit decorator imports
Browse files Browse the repository at this point in the history
  • Loading branch information
seevee committed Dec 21, 2023
1 parent e5349e2 commit 1297c1a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/editor.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Create and register the card editor
import { customElement } from "lit/decorators";
import { customElement } from "lit/decorators.js";
import { html, css, LitElement } from "lit";

import { HomeAssistantFixed } from "./types";
Expand Down
6 changes: 3 additions & 3 deletions src/lg-remote-control.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { css, html, LitElement } from "lit";
import { customElement } from 'lit/decorators';
import { HomeAssistant } from "custom-card-helpers";
import { css, html, LitElement } from 'lit';
import { customElement } from 'lit/decorators.js';
import { HomeAssistant } from 'custom-card-helpers';

import "./editor";
import { lineOutIcon, amazonIcon, tvOpticIcon, daznIcon, disneyIcon, tvHeadphonesIcon, arcIcon, opticIcon, nowTvIcon } from "./icons";
Expand Down

0 comments on commit 1297c1a

Please sign in to comment.