Unable to hide header toggle button for entity-filter type

Hi, when using a ‘unavailable’ state filter, I can’t hide the header toggle button. This what I have for that card:

entities:
  - entity: light.lumiereexterieur
  - entity: light.lumieregarage
  :
  : Much more entities here
  : 
  - entity: sensor.humiditesalledebain_si7021_humidity
  - entity: light.nodemcu
state_filter:
  - unavailable
show_header_toggle: false
theme: slate
type: entity-filter

End this is what I get:

image

Is this a bug or am I doing something wrong in that card?

Thanks.

Use the card: option:

entities:
  - entity: light.lumiereexterieur
  - entity: light.lumieregarage
  :
  : Much more entities here
  : 
  - entity: sensor.humiditesalledebain_si7021_humidity
  - entity: light.nodemcu
state_filter:
  - unavailable
theme: slate
type: entity-filter
card:
  type: entities
  show_header_toggle: false

You can use the other options from the entities card, like title: as well, or even make it a glance card instead of the default entities card.

Thanks, that worked.