I currently have a basic data binding setup:
{{ myAccount.Balance }}
Then I decided to incorporate a couple of filters:
{{ myAccount.Balance | filter1 | filter2 }}
Nevertheless, I am interested in using a ternary operator for scenarios where the Balance is less than zero. The following code snippet works fine (without applying any filters):
{{ myAccount.Balance > 0 ? myAccount.Balance : myAccount.Balance + 'minus' }}
Is there a way to integrate filters 1 and 2 into the above expression?