Closing tag
#3695
Replies: 2 comments 2 replies
-
We support this via the |
Beta Was this translation helpful? Give feedback.
0 replies
-
Are you sure? That seems to be working only for attributes, i meant the closing tag. <div
id={dropdownId}
class={'relative w-fit dropdown-component'}> // this is how it is now
{props.children}
</div> <div
id={dropdownId}
class={'relative w-fit dropdown-component'}
> // this is what im proposing
{props.children}
</div> |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm not sure what this formatting style is called, but I'd love an option to move the closing tag of an element with multiple attributes to the next line.
Currently, it looks like this:
I would like it to behave like this:
Beta Was this translation helpful? Give feedback.
All reactions