diff --git a/src/sql/workbench/parts/dashboard/browser/widgets/explorer/explorerTreeActions.ts b/src/sql/workbench/parts/dashboard/browser/widgets/explorer/explorerTreeActions.ts index 9d05fd458c..64963351b7 100644 --- a/src/sql/workbench/parts/dashboard/browser/widgets/explorer/explorerTreeActions.ts +++ b/src/sql/workbench/parts/dashboard/browser/widgets/explorer/explorerTreeActions.ts @@ -6,7 +6,6 @@ import { ManageAction, ManageActionContext } from 'sql/workbench/common/actions'; import { IConnectionManagementService } from 'sql/platform/connection/common/connectionManagement'; import { IAngularEventingService } from 'sql/platform/angularEventing/common/angularEventingService'; -import { IEditorProgressService } from 'vs/platform/progress/common/progress'; import { ExecuteCommandAction } from 'vs/platform/actions/common/actions'; export class ExplorerManageAction extends ManageAction { @@ -15,14 +14,12 @@ export class ExplorerManageAction extends ManageAction { id: string, label: string, @IConnectionManagementService connectionManagementService: IConnectionManagementService, @IAngularEventingService angularEventingService: IAngularEventingService, - @IEditorProgressService private _progressService: IEditorProgressService ) { super(id, label, connectionManagementService, angularEventingService); } public run(actionContext: ManageActionContext): Promise { const promise = super.run(actionContext); - this._progressService.showWhile(promise); return promise; } }