We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a5dd64 commit 7623214Copy full SHA for 7623214
src/workspacesExplorerView.ts
@@ -195,7 +195,7 @@ export class WorkspacesExplorerView extends Disposable implements vscode.TreeDat
195
this._onDidChangeTreeData.fire();
196
}
197
198
- async reveal(workspaceId: string, options?: { select?: boolean; focus?: boolean; }) {
+ async reveal(workspaceId: string, options?: { select?: boolean; focus?: boolean }) {
199
await this.workspacesBarrier.wait();
200
const element = this.workspaces.find(w => w.id === workspaceId);
201
if (element) {
@@ -204,6 +204,6 @@ export class WorkspacesExplorerView extends Disposable implements vscode.TreeDat
204
205
206
isVisible() {
207
- return this.treeView.visible
+ return this.treeView.visible;
208
209
0 commit comments