Replies: 2 comments 4 replies
-
|
You can use |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
uix-node itself is first as it will prepend when needed to mitigate getting removed by Lit. You can also use |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
After some recent HA update it seems my
:nth-child()selectors changed by one offset.To select the first
ha-chip-assistelement I had to change my:nth-child(1)to:nth-child(2)and I'm curious why. What is:nth-child(1)referencing now?I'm highlighted on (what I think) is the first
ha-chip-assistof three, and you can see on the right it's selecting for:nth-child(2):Here's the card:
It seems like it should be using
ha-assist-chip:nth-child(1)to select that first (selected) element. I'm concerned if I just blindly make it select child(2) it's going to break in the future.Beta Was this translation helpful? Give feedback.
All reactions