Paper-Buttons-Row cover (unwanted) popup

Hello!
i have tried to add a button to a cover entity row with @jcwillox paper-buttons-row plugin.
this is my code:

type: entities
show_header_toggle: false
entities:
  - entity: cover.buro
    extend_paper_buttons_row:
      buttons:
        - entity: input_boolean.cover_buro_auto
          state_icons:
            "off": mdi:autorenew-off
            "on": mdi:autorenew
          name: false
          styles:
            button:
              margin-right: 4px
              color: var(--primary-text-color)

in the end the row looks good, but when i press the button i get the usual popup:
button

am i missing something or is this intended to work this way? this “automatic button” is pretty essential to my covers setup so i’d be extremely happy if somebody could push me in the right direction.

best regards

I have the same problem. With a recent update, a click on a paper-button-row button now also brings up the card entity popup. Any ideas how to fix this, it is annoying.

This lovelace code used to work fine until recently:

  - entity: light.iris_wrapper
    name: Iris
    extend_paper_buttons_row:
      buttons:
        - entity: input_select.iris_behavior
          layout: icon
          state_icons:
            manual: mdi:alpha-m-box-outline
            dim: mdi:alpha-d-box-outline
            switch off: mdi:lightbulb-off-outline
          tap_action:
            action: call-service
            service: input_select.select_next
            service_data:
              entity_id: input_select.iris_behavior
              cycle: true
        - entity: input_select.iris_dim_control
          layout: icon
          state_icons:
            tv: mdi:television-box
            auto: mdi:alpha-a-box-outline
            dim: mdi:alpha-d-box-outline
          tap_action:
            action: call-service
            service: input_select.select_next
            service_data:
              entity_id: input_select.iris_dim_control
              cycle: true
 

Here’s the solution/workaround: Add a button to the default cover entity card - #18 by otiel