Skip to content

Commit d85243f

Browse files
committed
fix(IgxGrid): remove tabIndex from the footer element #6747
1 parent ce1c9ce commit d85243f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

projects/igniteui-angular/src/lib/grids/grid/grid.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@
227227
<div class="igx-grid__scroll-end" [style.float]='"right"' [style.width.px]='pinnedWidth' [style.min-width.px]='pinnedWidth' [hidden]="pinnedWidth === 0 || isPinningToStart"></div>
228228
</div>
229229

230-
<div class="igx-grid__footer" tabindex="0" #footer>
230+
<div class="igx-grid__footer" #footer>
231231
<ng-content select="igx-grid-footer"></ng-content>
232232
<ng-container *ngIf="paging && totalRecords">
233233
<ng-container

projects/igniteui-angular/src/lib/grids/hierarchical-grid/hierarchical-grid.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158
<div class="igx-grid__scroll-end" [style.float]='"right"' [style.width.px]='pinnedWidth' [style.min-width.px]='pinnedWidth' [hidden]="pinnedWidth === 0 || isPinningToStart"></div>
159159
</div>
160160

161-
<div class="igx-grid__footer" tabindex="0" #footer>
161+
<div class="igx-grid__footer" #footer>
162162
<ng-content select="igx-grid-footer"></ng-content>
163163
<ng-container *ngIf="paging && totalRecords">
164164
<ng-container

projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
<div class="igx-grid__scroll-end" [style.float]='"right"' [style.width.px]='pinnedWidth' [style.min-width.px]='pinnedWidth' [hidden]="pinnedWidth === 0 || isPinningToStart"></div>
134134
</div>
135135

136-
<div class="igx-grid__footer" tabindex="0" #footer>
136+
<div class="igx-grid__footer" #footer>
137137
<ng-content select="igx-grid-footer"></ng-content>
138138
<ng-container *ngIf="paging && totalRecords">
139139
<ng-container

0 commit comments

Comments
 (0)