{{#each pageData.users}}
<option
value="{{id}}"
{{#eq ../pageData.device.tags.custodian id}}selected{{/eq}}>
{{../pageData.device.tags.custodian}} {{id}}
</option>
{{/each}}
Im unsure why this is comparison is not working to make the option selected when I am printing the values out to visually make sure they are equal.
did something similar here and it worked just fined (its …/this since its inside of another loop)
{{#each (array 1 2 3 4 5 6 7 8 9 10)}}
<option value="{{this}}" {{#eq ../this.userSettings.minor_email this}}selected{{/eq}}>{{this}}</option>
{{/each}}
edit:
I am even further confused that this worked but eq did not
{{#includes ../pageData.device.tags.custodian id}}selected{{/includes}}>