You can write a filter that does this.
(function (app) {
app.filter('boolToYesNo', function () {
return function (input) {
return input ? 'yes' : 'no';
}
});
})(angular.module('app'));
And then call it like
{{ insuredProfile.permanentAddress.isScrubbed | boolToYesNo }}
source
share