This repository has been archived by the owner on Sep 5, 2024. It is now read-only.
Input value from Cache is turning Yellow & blurry #2260
Labels
for: internal contributor
The team will address this issue and community PRs are not requested.
needs: review
This PR is waiting on review from the team
type: bug
I have the email address input inside md-container. If the input is selected from the cache then the field is turning Yellow & blurry. If I add a character or remove a character and re add the yellow goes away.
My html & signin.modelOptions = {updateOn: 'default blur'};
<md-input-container layout-fill>
<label>Email</label>
<input name="emailAddress"
form-name="signinForm"
required
ng-model="signin.credentials.email"
ng-model-option="signin.modelOptions"
placeholder="Email" type="email">
<span layout-fill
ng-messages="signinForm.emailAddress.$error">
<span layout-fill ng-message="required">Email is required</span>
<span layout-fill ng-message="email">Must be a valid Email address</span>
</span>
</md-input-container>
The text was updated successfully, but these errors were encountered: