mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-15 01:25:36 -05:00
Add missing await (#10952)
This commit is contained in:
@@ -67,7 +67,7 @@ export class SqlDatabaseProjectTreeViewProvider implements vscode.TreeDataProvid
|
||||
this.treeView = value;
|
||||
}
|
||||
|
||||
public async focus(project: Project) {
|
||||
public async focus(project: Project): Promise<void> {
|
||||
const projNode = this.roots.find(x => x instanceof ProjectRootTreeItem ? (<ProjectRootTreeItem>x).project === project : false);
|
||||
|
||||
if (projNode) {
|
||||
|
||||
Reference in New Issue
Block a user