I have a date in $scope. When the page loads I want the input type="date" field value to be set on the value in $scope.
<input class="form-control" type="date"
ng-model="asso.formation_of_association"
placeholder="" />
But I only see dd-mm-yyy
on the input field
{{asso.formation_of_association | date : 'dd-MM-yyyy'}}
` – Aleksey Solovey Jun 21 '18 at 13:13