So I have these two data structures that I need to loop over and both of these will output the expected values
{{#each viewData.activity}}
    {{label}}<br/>
{{/each}}
<hr>
{{#each viewData.maxActivity}}
    {{label}}<br/>
{{/each}}
But I need to perform the following loop but it's not working as I have it below:
{{#each viewData.activity}}
    {{label}}<br/>
    {{../viewData.maxActivity.label}}<br/>
{{/each}}
The ../ should be working but it isn't. What am I missing?
I found in another SO post (https://stackoverflow.com/a/26341035/483140) and have the following working but doesn't seem efficient:
{{#each .}}
    {{#activity}}{{activityLabel}}{{/activity}}<br/>
    {{#maxActivity}}{{activityLabel}}{{/maxActivity}}<br/>
{{/each}}
 
    