Remove -1 from table tab index to allow tabbing into the table (#9681)

* Remove -1 from table tab index to allow tabbing into the table
This commit is contained in:
Udeesha Gautam
2020-03-25 15:29:13 -07:00
committed by GitHub
parent ab82c04766
commit d4434016d0

View File

@@ -36,7 +36,7 @@ export enum ColumnSizingMode {
@Component({ @Component({
selector: 'modelview-table', selector: 'modelview-table',
template: ` template: `
<div #table style="height:100%;" [style.font-size]="fontSize" [style.width]="width" tabindex="-1"></div> <div #table style="height:100%;" [style.font-size]="fontSize" [style.width]="width"></div>
` `
}) })
export default class TableComponent extends ComponentBase implements IComponent, OnDestroy, AfterViewInit { export default class TableComponent extends ComponentBase implements IComponent, OnDestroy, AfterViewInit {