Is there a way to customize the date format within an ng-repeat loop? I attempted to format it as shown below
<div class="col-date">{{row.Calendar.start | date : "dd.MM.y"}}</div>
However, it did not produce the desired outcome. What is the correct method for formatting dates in ng-repeat?