Skip to content

Commit

Permalink
Remove vestigial root div, fixed grid rows layout option.
Browse files Browse the repository at this point in the history
Fixes issue #1
  • Loading branch information
j9brown committed Oct 11, 2024
1 parent 32db5b2 commit 6ba2f3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "decluttering-card",
"version": "1.0.4",
"version": "1.0.5",
"description": "Decluttering Card for Lovelace",
"main": "dist/decluttering-card.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/decluttering-card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ abstract class DeclutteringElement extends LitElement {
if (!this._hass || !this._thing) return html``;

return html`
<div id="root">${this._thing}</div>
${this._thing}
`;
}

Expand Down

0 comments on commit 6ba2f3f

Please sign in to comment.