What can be wrong if i create templete ( via code view) with
<table class="bordered" style="width: 100%; border-collapse: collapse;"><tbody>
<tr style="background:#eee;border-bottom:1px solid #eee;">
headers
</tr>
{{#each............ }}
<tr>
DATA
</tr>
{{/each}}
</table>
after saving and editing again i got {{#each}} jumps before whole table:
<table class="bordered" style="width: 100%; border-collapse: collapse;"><tbody>
<tr style="background:#eee;border-bottom:1px solid #eee;">
headers
</tr>
{{#each............ }}
<tr>
DATA
</tr>
{{/each}}
</table>
after saving and editing again i got {{#each}} jumps before whole table:
Comment