Custom Module - Date Field - Edit View not showing Date

I have custom module with a date field.
The create form works fine to set the date.
For the edit form, if the date is already populated, how do I pass the date to the date picker?
When I look at the code the date input field has the value.
See example:Brandy B.

I want the date to show in the edit form if the value was populated in the input/create form.

The edit form always defaults the date format for a datetime-local value.
{{this.Date | date: "%Y-%m-%dT%H:%M"}}

You just need to change the date format to
{{this.Date | date: "%Y-%m-%d"}}