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
When using a widget with a template, elements that are rendered inside of a <table> element are not parsed properly.
<table>
This template:
{{batteryList}} <table> <tbody> <tr>{{batteryList}}</tr> </tbody> </table>
Will output the following to the dom:
[object Object] [object Object] <table style=""> <tbody style=""> <tr style=""></tr> </tbody> </table>
This also applies to for loops {% for element in list %}, which are unable to loop through elements when they are placed inside a <table>
{% for element in list %}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using a widget with a template, elements that are rendered inside of a
<table>
element are not parsed properly.This template:
Will output the following to the dom:
This also applies to for loops
{% for element in list %}
, which are unable to loop through elements when they are placed inside a<table>
The text was updated successfully, but these errors were encountered: