Groups with view: true (tabs) have hidden:true?

HI,

Looking for several hidden entities, Ive just discovered all of my Tab groups, (view: true) have the attribute hidden set to true. Maybe a silly question, and nooby to only discover now, but is this the way it should be?

the thing that puzzles me is that if this isn’t default, and the https://www.home-assistant.io/components/group/ page doesn’t say it is, the hidden feature can only be set in customize. Unless the view: true groups are treated as default groups https://www.home-assistant.io/components/group/#default-groups ?

I havent set it there, so how come??

Cheers,
Marius

It’s probably so the card doesn’t show up as well as the view.

ok thanks, so you confirm it is like that in your settings too? I can stop looking for errors on this front then…

let me take a look

Yep, looks like it.

1 Like

guess thats the intelligent way of doing this:

34

lol. thanks! next time, please cut and past, now i have to do the typing myself…

{% set groups = states.group|selectattr('attributes.view','eq',True) %}
{% for g in groups %}
{{ g.entity_id + ":" }}
  - view:   {{ g.attributes.view }} 
  - hidden: {{ g.attributes.hidden }}
{% endfor %}
1 Like