Browse Source

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
pull/5334/head
Igor Kulikov 5 years ago
committed by GitHub
parent
commit
aee4163a04
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      ui-ngx/src/app/shared/components/button/toggle-password.component.html

2
ui-ngx/src/app/shared/components/button/toggle-password.component.html

@ -15,6 +15,6 @@
limitations under the License.
-->
<button mat-icon-button type="button" (click)="togglePassword($event)" [attr.aria-pressed]="showPassword" *ngIf="!hideToggle">
<button mat-icon-button type="button" tabindex="-1" (click)="togglePassword($event)" [attr.aria-pressed]="showPassword" *ngIf="!hideToggle">
<mat-icon>{{ showPassword ? 'visibility' : 'visibility_off' }}</mat-icon>
</button>

Loading…
Cancel
Save