fix keyboard focus issues (#16206)

This commit is contained in:
Alan Ren
2021-07-16 13:27:15 -07:00
committed by GitHub
parent 3847271e67
commit eed792f3db
19 changed files with 69 additions and 86 deletions

View File

@@ -63,9 +63,6 @@ export class QueryModelViewTabView implements IPanelView {
public layout(dimension: Dimension): void {
}
public focus(): void {
}
public get componentId(): string {
return this.state.componentId;
}

View File

@@ -44,10 +44,6 @@ class MessagesView extends Disposable implements IPanelView {
this.messagePanel.layout(dimension);
}
focus(): void {
this.messagePanel.focus();
}
public clear() {
this.messagePanel.clear();
}
@@ -83,10 +79,6 @@ class ResultsView extends Disposable implements IPanelView {
this.gridPanel.layout(dimension);
}
focus(): void {
this.gridPanel.focus();
}
public clear() {
this.gridPanel.clear();
}