Hello,
i'm pretty new to meteor.js, so 1st: Thank you to the devs, this is more awesome than awesome!
I'm trying to get my feet wet and I just stumbled over this issue:
When I try to {{#each}} over an array containing a null value I get the following errors:
In the browser console:
Uncaught TypeError: Cannot read property '_id' of null
Exception from Meteor.flush: TypeError: Cannot call method 'firstNode' of undefined
Seeing that the handlebars documentation states that {{#if }} can be used to test against null, I would have expected an array to be able to contain null values...
Or am I not getting something here?
Is it a handlebars thing or something meteor-Specific?