The code snippet below was originally in my .component.html
file:
<div class="someContainer">
<div class="text--bold">Display this please:</div>
<div>{{ myObject.date ? '2 Jun' : 'Now' }}</div>
</div>
It was working correctly and displaying the date as expected. However, rather than hardcoding '2nd June', I wanted to display the result of a method:
<div>{{ myObject.date ? myObject.findDate(someParam) | date:'d LLL' : 'Now' }}</div>
When I tried to implement this change, it did not compile and displayed an error saying: Expected.