I have a condition where I need to apply the money mask.
<td>
<div class="pull-left">{{nota.issRetido[0] === true ? nota.qtdNotasEmitidas | currency : '-'}}</div>
<div class="pull-right">{{nota.issRetido[0] === false ? nota.qtdNotasEmitidas| currency : '-'}}</div>
</td>
When passing ' | currency: 'for condition when true , returns siyntax Syntax Error
However, this error only occurs in the condition of this if inline. How do I put the mask on?