Skip to content

Commit

Permalink
card not row
Browse files Browse the repository at this point in the history
  • Loading branch information
iantrich committed Feb 20, 2020
1 parent a3cc0fe commit e7c64d5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "radial-menu",
"version": "1.4.9",
"version": "1.5.0",
"description": "Lovelace radial-menu",
"keywords": [
"home-assistant",
Expand Down
2 changes: 1 addition & 1 deletion src/const.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const CARD_VERSION = '1.4.9';
export const CARD_VERSION = '1.5.0';
2 changes: 1 addition & 1 deletion src/radial-menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export class RadialMenu extends LitElement {

this._config.items.forEach(item => {
if (item.card) {
item.element = this._helpers ? this._helpers.createEntityRow(item.card) : createThing(item.card);
item.element = this._helpers ? this._helpers.createCardElement(item.card) : createThing(item.card);

if (item.element) {
item.element.hass = this.hass;
Expand Down

0 comments on commit e7c64d5

Please sign in to comment.