Skip to content

Commit

Permalink
fix(platform): remove tabindex from scrollable containers in VHD (#11852
Browse files Browse the repository at this point in the history
)
  • Loading branch information
mikerodonnell89 committed May 7, 2024
1 parent b4a7a5b commit 30e6441
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ <h5 fd-title role="heading" aria-level="5">
<div
class="fdp-value-help-dialog__table-holder table-content"
fd-scrollbar
[overrideTabindex]="false"
fdInfiniteScroll
(onScrollAction)="_showMoreElements()"
[scrollPercent]="80"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<ng-container *ngIf="!mobile">
<ng-container *ngTemplateOutlet="advancedSearchContent"></ng-container>
</ng-container>
<div fd-scrollbar class="fdp-value-help-dialog__content-holder">
<div fd-scrollbar [overrideTabindex]="false" class="fdp-value-help-dialog__content-holder">
<ng-container *ngIf="mobile">
<ng-container *ngTemplateOutlet="advancedSearchContent"></ng-container>
</ng-container>
Expand Down Expand Up @@ -280,7 +280,7 @@ <h5 fd-title class="selected-and-condition-title" [id]="id + '-selected-item'">
</ng-template>

<ng-template #defineConditionsContent>
<div fd-scrollbar>
<div fd-scrollbar [overrideTabindex]="false">
<fdp-define-tab
[strategyLabels]="defineStrategyLabels"
[conditions]="conditionItems"
Expand Down

0 comments on commit 30e6441

Please sign in to comment.