repeat, where I repeat pairs of key values, I have a key with no spaces, where I need to display with space.
my ng-repeat:
ng-repeat="(key, value) in scenariosViewAll.collectionBookObject"
I show in between:
<span class="accordion-title">
{{key}}
</span>
in the controller, I push the array as:
vm.shared.collectionFlyoutObject.BusinessDrivers.push(data);
It works great and displays the key as BusinessDrivers. But I need to display as business drivers.
source
share