adding telemetry for when the bulk edit pane has been opened

This commit is contained in:
Aiday Marlen Kyzy
2024-03-04 17:23:57 +01:00
parent 1fff44a284
commit 5124bd4133
@@ -100,6 +100,12 @@ export class BulkEditPane extends ViewPane {
this._ctxHasCategories = BulkEditPane.ctxHasCategories.bindTo(contextKeyService);
this._ctxGroupByFile = BulkEditPane.ctxGroupByFile.bindTo(contextKeyService);
this._ctxHasCheckedChanges = BulkEditPane.ctxHasCheckedChanges.bindTo(contextKeyService);
// telemetry
type BulkEditPaneOpened = {
owner: 'aiday-mar';
comment: 'Report when the bulk edit pane has been opened';
};
this.telemetryService.publicLog2<{}, BulkEditPaneOpened>('views.bulkEditPane');
}
override dispose(): void {