Popup after press on badge (button)

Hello,

i have added my first badge to homeassistant (its a button to open my door at home)

- entity: button.haustur

My problem is, when i click on the badge, i get always the popup where i see the history, the log and then in this popup i have to press again on “Button”, to open my door.

Is there a way to skip this popup?

Displaying the “more-info” popup seems to be a default behaviour.
It is usually may be overridden by “tap_action”:

title: badges
path: test-badges
badges:
  - entity: sun.sun
    tap_action:
      action: none

Hello,

Thanks a lot. Tried this, but nothing changed. The more info popup does still open.

EDIT:

Found a solution!

  - entity: button.haustur
    tap_action:
      action: call-service
      service: button.press
      service_data:
        entity_id: button.haustur

Does not open in my test.
This example was tested.