Skip to content

Commit 7623214

Browse files
committed
💄
1 parent 8a5dd64 commit 7623214

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/workspacesExplorerView.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ export class WorkspacesExplorerView extends Disposable implements vscode.TreeDat
195195
this._onDidChangeTreeData.fire();
196196
}
197197

198-
async reveal(workspaceId: string, options?: { select?: boolean; focus?: boolean; }) {
198+
async reveal(workspaceId: string, options?: { select?: boolean; focus?: boolean }) {
199199
await this.workspacesBarrier.wait();
200200
const element = this.workspaces.find(w => w.id === workspaceId);
201201
if (element) {
@@ -204,6 +204,6 @@ export class WorkspacesExplorerView extends Disposable implements vscode.TreeDat
204204
}
205205

206206
isVisible() {
207-
return this.treeView.visible
207+
return this.treeView.visible;
208208
}
209209
}

0 commit comments

Comments
 (0)