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
Hey! I am experiencing a slight odd behavior. The below template does not render as expected.
<h1>OrderID: #12345</h1> <br> {{#each items}} <p>{{itemName}}</p> <ul> {{#each arrayify selectedOptions}} <li>{{name}}: {{value}}</li> {{/each}} </ul> {{/each}}
For some reason it is rendering like this (for 3 items in"each"):
<ul> <p>Name</p> <li>options</li> <li>option</li> </ul> <p>Name</p> <ul> <li>option</li> <li>option</li> </ul> <p>Name</p> <ul> <li>option</li> <li>option</li> </ul>
On the first item, the <p> tag ends up inside the <ul> but the rest are outside.
<p>
<ul>
Any ideas on what could be going on?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hey! I am experiencing a slight odd behavior.
The below template does not render as expected.
For some reason it is rendering like this (for 3 items in"each"):
On the first item, the
<p>
tag ends up inside the<ul>
but the rest are outside.Any ideas on what could be going on?
The text was updated successfully, but these errors were encountered: