Fix assessment results dialog telemetry (#17483)

This commit is contained in:
Charles Gagnon
2021-10-25 09:51:00 -07:00
committed by GitHub
parent 7843993180
commit 89c15c9496

View File

@@ -66,7 +66,7 @@ export class AssessmentResultsDialog {
public async openDialog(dialogName?: string) {
if (!this._isOpen) {
this._isOpen = true;
this.dialog = azdata.window.createModelViewDialog(this.title, this.title, 'wide');
this.dialog = azdata.window.createModelViewDialog(this.title, 'AssessmentResults', 'wide');
this.dialog.okButton.label = AssessmentResultsDialog.SelectButtonText;
this._disposables.push(this.dialog.okButton.onClick(async () => await this.execute()));