-
Notifications
You must be signed in to change notification settings - Fork 6.8k
fix(docs): telephone number input control example is missing programa… #15130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(docs): telephone number input control example is missing programa… #15130
Conversation
@@ -1,7 +1,7 @@ | |||
<div [formGroup]="parts" class="example-tel-input-container"> | |||
<input class="example-tel-input-element" formControlName="area" size="3"> | |||
<input class="example-tel-input-element" formControlName="area" size="3" aria-label="Enter first 3 digits of phone number"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The label should be "Area code".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed as per your suggestion. Can you please check now.
<span class="example-tel-input-spacer">–</span> | ||
<input class="example-tel-input-element" formControlName="exchange" size="3"> | ||
<input class="example-tel-input-element" formControlName="exchange" size="3" aria-label="Enter middle 3 digits of phone number"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The label should be "Exchange code".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed as per your suggestion. Can you please check now
<span class="example-tel-input-spacer">–</span> | ||
<input class="example-tel-input-element" formControlName="subscriber" size="4"> | ||
<input class="example-tel-input-element" formControlName="subscriber" size="4" aria-label="Enter last 4 digits of phone number"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The label should be "Subscriber number".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed as per your suggestion. Can you please check now
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@Suresh918 can you rebase this PR? |
bc2252c
to
bc21abc
Compare
@jelbourn Rebased the pull request |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Fixes #15024