We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In order for content to display properly inside a tab, it must be wrapped inside a <div> or <span>. Previously this was not the case.
<div>
<span>
This tab content will lose 2 of the 3 p tags.
<tl-tabs> <template tab-content="TAB ONE"> <p>1</p> <p>2</p> <p>3</p> </template> </tl-tabs>
requiring this
<tl-tabs> <template tab-content="TAB ONE"> <div> <p>1</p> <p>2</p> <p>3</p> </div> </template> </tl-tabs>
The text was updated successfully, but these errors were encountered:
mumptastic
Successfully merging a pull request may close this issue.
In order for content to display properly inside a tab, it must be wrapped inside a
<div>
or<span>
. Previously this was not the case.This tab content will lose 2 of the 3 p tags.
requiring this
The text was updated successfully, but these errors were encountered: