thomasloven / lovelace-template-entity-row

🔹 Display whatever you want in an entities card row.
MIT License
210 stars 16 forks source link

Double tap action not working #67

Open joshuaspence opened 2 years ago

joshuaspence commented 2 years ago

I am using the latest version of Home Assistant (2021.10.6) and template-entity-row (1.3.0). double_tap_action doesn't seem to work. I can reproduce the issue with the following configuration:

type: 'entities'
entities:
  - entity: 'person.josh'
    tap_action:
      action: 'none'
    double_tap_action:
      action: 'more-info'

  - type: 'custom:template-entity-row'
    entity: 'person.josh'
    tap_action:
      action: 'none'
    double_tap_action:
      action: 'more-info'

Double-tapping on the first entity loads the more-info dialog but double-tapping on the second entity does nothing.