I am building out a table in Postman Visualizer where the code looks like so:
<tr>
<th>AAA</th>
<th>BBB</th>
<th>CCC</th>
</tr>
{{#each response}}
<tr>
<td>{{aaa}}</td>
<td>{{bbb}}</td>
<td>{{ccc}}</td>
</tr>
{{/each}}
When I run the request I see the table with the AAA and BBB columns populated but CCC is not. The issue seems to be that {{ccc}} is a numeric value that possibly needs to be converted to a string before it will render in the table. I tried the toString() method and that did not seem to work. Also tried JSON.stringify({{ccc}}) to no avail. Can anyone help? What do I need to do to have the {{ccc}} numeric values render in my table?
`