Can a filter be applied to a variable in the template within a ternary operation?
<img ng-src="{{ image_url && image_url|filter:"foo" || other_url }}">
In this scenario, the filter is custom-made and I prefer not to alter it to accommodate the ternary operation. This is because the filter's functionality may vary based on its usage, and I want to avoid duplicating that logic multiple times.