Browse Source

UI: Added ignoring focus when switching between input fields on the TAB in component tb-toggle-password

pull/5333/head
Vladyslav_Prykhodko 5 years ago
parent
commit
3a8fda1d8b
  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