Look for row config in the right place

This commit is contained in:
Thomas Lovén 2019-06-28 14:23:02 +02:00
parent 0154b13a23
commit f0486b0cde
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
AUTHOR := Thomas Lovén AUTHOR := Thomas Lovén
CARD_TOOLS := $(PWD)/../card-tools CARD_TOOLS := $(PWD)/../../../custom-cards/card-tools
PACKAGE := $(shell basename $(CURDIR)) PACKAGE := $(shell basename $(CURDIR))
PACKAGE := $(PACKAGE:lovelace-%=%) PACKAGE := $(PACKAGE:lovelace-%=%)

File diff suppressed because one or more lines are too long

View File

@ -35,7 +35,7 @@ class FoldEntityRow extends LitElement {
} }
clickRow(ev) { clickRow(ev) {
const config = ev.target._config; const config = ev.target.parentElement._config;
const entity = config.entity || (typeof config === "string" ? config : null); const entity = config.entity || (typeof config === "string" ? config : null);
ev.stopPropagation(); ev.stopPropagation();