File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -256,6 +256,7 @@ export class ResultsView extends AbstractWebview<
256256 }
257257 case "changeSort" :
258258 await this . changeRawSortState ( msg . resultSetName , msg . sortState ) ;
259+ telemetryListener ?. sendUIInteraction ( "local-results-column-sorting" ) ;
259260 break ;
260261 case "changeInterpretedSort" :
261262 await this . changeInterpretedSortState ( msg . sortState ) ;
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import { vscode } from "../vscode-api";
44import { RawResultsSortState , SortDirection } from "../../pure/interface-types" ;
55import { nextSortDirection } from "./result-table-utils" ;
66import { Column } from "../../pure/bqrs-cli-types" ;
7- import { sendTelemetry } from "../common/telemetry" ;
87
98interface Props {
109 readonly columns : readonly Column [ ] ;
@@ -40,7 +39,6 @@ function toggleSortStateForColumn(
4039 resultSetName : schemaName ,
4140 sortState : nextSortState ,
4241 } ) ;
43- sendTelemetry ( "local-results-column-sorting" ) ;
4442}
4543
4644export default function RawTableHeader ( props : Props ) {
You can’t perform that action at this time.
0 commit comments