Fix updating step icon (#9488)

* fix updating data

* bump toolsservice and agent versions

* unbumo the version
This commit is contained in:
Aditya Bist
2020-03-06 16:51:32 -08:00
committed by GitHub
parent 5578693635
commit a93f5883b9
2 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{
"downloadUrl": "https://github.com/Microsoft/sqltoolsservice/releases/download/v{#version#}/microsoft.sqltools.servicelayer-{#fileName#}",
"version": "2.0.0-release.50",
"version": "2.0.0-release.51",
"downloadFileNames": {
"Windows_86": "win-x86-netcoreapp2.2.zip",
"Windows_64": "win-x64-netcoreapp2.2.zip",

View File

@@ -107,9 +107,9 @@ export class JobStepsViewComponent extends JobManagementView implements OnInit,
this._register(attachListStyler(this._tree, this.themeService));
const stepsTooltip = nls.localize('agent.steps', "Steps");
jQuery('.steps-header > .steps-icon').attr('title', stepsTooltip);
this._jobManagementService.stepsChanged((data: JobStepsViewRow[]) => {
this._jobManagementService.stepsChanged(async (data: JobStepsViewRow[]) => {
this._treeDataSource.data = data;
this._tree.refresh();
await this._tree.refresh();
});
this._telemetryService.publicLog(TelemetryKeys.JobStepsView);
}