When utilizing the Angular "currency" filter to display prices in a shopping cart, the prices are retrieved from a backend server. Occasionally, the price may not be available for user viewing. In such instances, I aim to inform the user that the price is currently unavailable within the same field as the currency value. Unfortunately, displaying plain text within a currency filter is not possible. One potential solution involves adding an additional text field to show/hide when a price is not available, though this approach may seem unnecessary. Are there any methods to extend or override AngularJS's built-in "currency" filter? Any assistance would be greatly appreciated.
<div class="large-12 medium-12 small-12 columns pad-none nzs-pro-list-item-price">
{{item.ItmPrice|currency}}
</div>