I am encountering an issue with my validation summary:
<div ng-if="client.showValidations" class="validation-summary-errors text-danger">
<span>There be errors!</span>
<ul>
<li ng-repeat="(key, value) in client.validationErrors">{{value}}</li>
</ul>
</div>
The validationErrors
contains objects with both key
and value
properties. Despite my intention to only display the value
, I see the entire object being output literally instead. What mistake have I made and how can I correct it?