I am using 0.7.0.1 Meteor and am trying to update from Collection to SmartCollection. See below... the first one works and the second one doesnt (but does when I switch back from SmartCollection to Collection). The _id works in both cases but not name. I read somewhere that name might be a reserved word or something, but why would it work in the other first example below? Any ideas? What could it be in SmartCollection that is breaking this?
working
{{#each operatingSystemBrands}}
<input type="radio" class="brandRadios" name="brandRadios" id="{{_id}}" value="{{_id}}">
<label for="{{_id}}">{{name}}</label>
{{/each}}
not working:
{{#each devices}}
<input type="radio" class="deviceRadios" name="deviceRadios" id="{{_id}}" value="{{_id}}">
<label for="{{_id}}">{{name}}</label>
{{/each}}