Say I have the following HTML:
<p>{{ booleanVariable ? "The variable is true!" : null }}</p>
If booleanVariable is false, the expression should be empty and the <p></p> shouldn't render. However, it just prints the "null" into the <p> tag, as if I'd just typed <p>null</p>.
How would I get the expression to just render nothing?