I’m unable to rename some of my cards, especially this one:
configuration.yaml:
input_number: slider1: name: test initial: 20 min: 20 max: 80 step: 1
results to this:
So how can I rename “Numerische Eingabe” to something useful?
I’m unable to rename some of my cards, especially this one:
configuration.yaml:
input_number: slider1: name: test initial: 20 min: 20 max: 80 step: 1
results to this:
So how can I rename “Numerische Eingabe” to something useful?
Place it in a group. What you are looking at is the default view creating a default group.
It’s already in a group.
groups.yaml:
test: name: test view: yes entities: - input_number.slider1
No its not, you have it in a view. That’s what view: yes does. It turns the group into a view. Any object placed in a view is placed into ‘bucket’ groups based on domain type. The domain type you have is input_number, so that’s the group it’s being placed in. You need to place it into a group, then place the group into the view.
test_view:
name: test
view: yes
entities:
- group.test_group
test_group:
name: test
entities:
- input_number.slider1
Ahhhhh, ok.
That works, thanks.
Simple examples like this, should become a “sticky” in the Wikis “noob-section”.
Or even better, just create a method, to simply edit the card-label from the GUI…