mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -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#}",
|
"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": {
|
"downloadFileNames": {
|
||||||
"Windows_86": "win-x86-netcoreapp2.2.zip",
|
"Windows_86": "win-x86-netcoreapp2.2.zip",
|
||||||
"Windows_64": "win-x64-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));
|
this._register(attachListStyler(this._tree, this.themeService));
|
||||||
const stepsTooltip = nls.localize('agent.steps', "Steps");
|
const stepsTooltip = nls.localize('agent.steps', "Steps");
|
||||||
jQuery('.steps-header > .steps-icon').attr('title', stepsTooltip);
|
jQuery('.steps-header > .steps-icon').attr('title', stepsTooltip);
|
||||||
this._jobManagementService.stepsChanged((data: JobStepsViewRow[]) => {
|
this._jobManagementService.stepsChanged(async (data: JobStepsViewRow[]) => {
|
||||||
this._treeDataSource.data = data;
|
this._treeDataSource.data = data;
|
||||||
this._tree.refresh();
|
await this._tree.refresh();
|
||||||
});
|
});
|
||||||
this._telemetryService.publicLog(TelemetryKeys.JobStepsView);
|
this._telemetryService.publicLog(TelemetryKeys.JobStepsView);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user