Commit aee4163a041bde9910b430a4d07ff2a3b2fe3155

Authored by Igor Kulikov
Committed by GitHub
2 parents 4e59f4a8 3a8fda1d

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
... ... @@ -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>
... ...