mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-26 09:35:38 -05:00
Some promise fixes (#8216)
* Some promise fixes * changes to how we're logging errors * Fix the tests * Fix a few other issues
This commit is contained in:
@@ -52,7 +52,7 @@ export class BreadcrumbComponent implements OnInit, OnDestroy {
|
||||
this._changeRef.detectChanges();
|
||||
}
|
||||
|
||||
public route(link: any[]): void {
|
||||
this._router.navigate(link);
|
||||
public route(link: any[]): Promise<boolean> {
|
||||
return this._router.navigate(link);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user