From d4434016d0a8a59147606c0e919e48a85ee8b6d7 Mon Sep 17 00:00:00 2001 From: Udeesha Gautam <46980425+udeeshagautam@users.noreply.github.com> Date: Wed, 25 Mar 2020 15:29:13 -0700 Subject: [PATCH] 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 --- src/sql/workbench/browser/modelComponents/table.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql/workbench/browser/modelComponents/table.component.ts b/src/sql/workbench/browser/modelComponents/table.component.ts index 40d4f2bda1..b0ce527f70 100644 --- a/src/sql/workbench/browser/modelComponents/table.component.ts +++ b/src/sql/workbench/browser/modelComponents/table.component.ts @@ -36,7 +36,7 @@ export enum ColumnSizingMode { @Component({ selector: 'modelview-table', template: ` -
+
` }) export default class TableComponent extends ComponentBase implements IComponent, OnDestroy, AfterViewInit {