I have the following template:
{{#with invitation.meeting}}
Meeting invitation for "{{topic}}"
{{#if location}}
@ {{location}}
{{/if}}
({{formatDate startsAt}})
{{/with}}
THe content for this template is an ember-data object.
There are occasions where the location property of this object is null which is why I added the if statement
{{#if location}}
The problem is that the if statement causes an error:
Uncaught Error: assertion failed: You need to provide an object and key to
get.
I thought the if helper worked if the property at the path was null.
Can anyone see what I am doing wrong?