I have a simple Angular template that is currently using string concatenation within interpolation as follows:
<h4>{{ myVar.property ? myVar.property + ' IS NOT NULL' : '' }}</h4>
What I would like to do is replace the concatenation with template literals like so:
<h4>{{ myVar.property ? `${myVar.property} IS NOT NULL` : '' }}</h4>
When trying this, I get an unexpected Lexer error. Is there some way that I can implement this ternary expression and use template strings as opposed to string concatenation?