date input is not showing the date until the user change it
// showing the date {{someDate | date}} // not showing the date. instead showi
{{someDate | date}}
Try converting the someDate scope variable from string to Date format and then if you use input type="date" ng-model="someDate" . This solved my problem .