Commit 3a8fda1d8b3c8e2f3ebc66d427cafbf9870d6d2f
1 parent
68fc5b99
UI: Added ignoring focus when switching between input fields on the TAB in compo…
…nent tb-toggle-password
Showing
1 changed file
with
1 additions
and
1 deletions
... | ... | @@ -15,6 +15,6 @@ |
15 | 15 | limitations under the License. |
16 | 16 | |
17 | 17 | --> |
18 | -<button mat-icon-button type="button" (click)="togglePassword($event)" [attr.aria-pressed]="showPassword" *ngIf="!hideToggle"> | |
18 | +<button mat-icon-button type="button" tabindex="-1" (click)="togglePassword($event)" [attr.aria-pressed]="showPassword" *ngIf="!hideToggle"> | |
19 | 19 | <mat-icon>{{ showPassword ? 'visibility' : 'visibility_off' }}</mat-icon> |
20 | 20 | </button> | ... | ... |