Commit aee4163a041bde9910b430a4d07ff2a3b2fe3155
Committed by
GitHub
Merge pull request #5333 from vvlladd28/improvement/tb-toggle=password/select-tab
[3.3.2] UI: Added ignoring focus when switching between input fields on the TAB in component 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> | ... | ... |