Having a small issue with the datepicker input. In my code, I have a section that captures the user's birth date during sign-up;
<div>
<label for="date_of_birth"><b>Your Birthday</b></label>
<input type="date" placeholder="Please enter your birthday" name="date_of_birth" required
[(ngModel)]="register.date_of_birth" style="margin-left: 20px;" date-picker>
</div>
The functionality works perfectly in Chrome - when the user clicks on the input field, the date picker automatically appears. However, this is not the case in Safari. I am unable to identify the issue. How can I ensure that the date picker also functions correctly in Safari?