mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
Fix updating step icon (#9488)
* fix updating data * bump toolsservice and agent versions * unbumo the version
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user