I have this json data:
{
"year": 1986,
"data" : {
"3": {"Name": "Charlie"},
"1": {"Name": "Alice"},
"2": {"Name": "Bob"}
}
}
and I am trying create a pdf report with 3 pages. if I use this
{{#each data}}
<h1>Title: {{@key}}</h1>
{{/each}}
O obtain 1, 2, 3. I need the original order 3 1 2
Is it possible to maintain the order?