Entity-filter card without tap_action

Hi ,

I use the entity-filter card, together with an glance-card to display active lights in the house.
I want to disable tap_action, but where ever I put in that code, its not working and i can still click on the group/entity to get more information.

My code:

card:
  title: Actieve verlichting
  type: glance
  tap_action:
    action: 'none'
entities:
  - group.keuken
  - group.eetkamer
  - group.woonkamer
  - group.gang
  - group.badkamer
  - group.zolder
show_empty: false
state_filter:
  - 'on'
type: entity-filter

I do use this also in another card and in that card its working perfect;

cards:
  - aspect_ratio: 100%
    double_tap_action: none
    entity: person.dave
    hold_action: none
    image: /local/images/dave_picture_entity.jpg
    name: Dave
    state_filter:
      Home: brightness(110%)
      not_home: brightness(50%) grayscale(80%)
    tap_action: none
    type: picture-entity
  - aspect_ratio: 100%
    double_tap_action: none
    entity: person.anne
    hold_action: none
    image: /local/images/anne_picture_entity.jpg
    name: Anne
    state_filter:
      Away: brightness(50%) grayscale(80%)
      Home: brightness(110%)
    tap_action: none
    type: picture-entity
type: horizontal-stack

Hope someone can help me in the right direction.

Thanks!
Dave

Not sure, but the entity-filter card has no action options.
Neither for the card nor for the entities.

Correct, thats why I use the card option just like the documentations describes

card
(map)(Optional)
Extra options to pass down to the card rendering the result.

I thought this way it should work.

Horizontal-stack also has no option, but its working there, because I use the option in the card-section, just like inn the entity-filter card.

Oh, sorry, didn’t know that option.
Then maybe provide the action: none to every entity?

entities:
  - entity: group.keuken
    tap_action:
      action: none

No, this is not working;

get error: bad indentation of a mapping entry

For anyone else who comes across this thread, the suggestion by @VDRainer did work for me. My card config for completeness:

type: entity-filter
show_empty: false
card:
  type: glance
  columns: 2
  title: Notifications
entities:
  - entity: input_boolean.washing_machine_finished
    name: Washing Machine Finished
    state_filter:
      - operator: '!='
        value: 'off'
    tap_action:
      action: none

I actually have the tap_action set to toggle normally but setting none also works for me