Skip to content

Commit 76257a3

Browse files
committed
Fix for vertical-stack-in-card and stack-in-card
1 parent 65f5a27 commit 76257a3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "decluttering-card",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"description": "Template Card for Lovelace",
55
"main": "dist/decluttering-card.js",
66
"pre-commit": [

src/decluttering-card.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class DeclutteringCard extends LitElement {
6262
if (!this._hass || !this._card || !this._config)
6363
return html``;
6464

65-
return html`<div>${this._card}</div>`;
65+
return html`<div id="root">${this._card}</div>`;
6666
}
6767

6868
private async _createCard(config: any): Promise<any> {

src/version-const.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const CARD_VERSION = '0.4.1';
1+
export const CARD_VERSION = '0.4.2';

0 commit comments

Comments
 (0)