Skip to content

Commit

Permalink
Add not focusable
Browse files Browse the repository at this point in the history
  • Loading branch information
Loki Tobias Elble committed May 6, 2024
1 parent 24b3ed0 commit fb34e29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="flex-center-unsafe overlay-component stretch-to-fill-parent" data-cy="osOverlay">
<div class="overlay-content" #viewContainer></div>
<div class="overlay-backdrop stretch-to-fill-parent" (click)="backdrop.emit()"></div>
<div class="overlay-backdrop stretch-to-fill-parent" (click)="backdrop.emit()" tabindex="-1"></div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
[ngClass]="rowClass"
[ngStyle]="getNgStyle(isLast)"
(click)="onRowClick($event, item)"
tabindex="-1"
>
<div *ngIf="isSelectionMode" class="selection-cell scrolling-table-cell flex-vertical-center">
<mat-checkbox
Expand Down

0 comments on commit fb34e29

Please sign in to comment.