don't allow tabbing into table (#7769)

This commit is contained in:
Kim Santiago
2019-10-22 16:25:37 -07:00
committed by GitHub
parent a70ebeed1c
commit 37426b0794

View File

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