feat(editor): Add telemetry events for data tables (no-changelog) (#19091)

This commit is contained in:
Milorad FIlipović
2025-09-04 09:17:53 +02:00
committed by GitHub
parent 4313aa315f
commit d666b65a7f
6 changed files with 47 additions and 3 deletions

View File

@@ -931,6 +931,7 @@ function valueChanged(untypedValue: unknown) {
is_custom: value === CUSTOM_API_CALL_KEY,
push_ref: ndvStore.pushRef,
parameter: props.parameter.name,
value: value as string,
});
}
// Track workflow input data mode change

View File

@@ -345,11 +345,11 @@ const setSorting = async (sort: string, persistUpdate = true) => {
sortBy.value = sort;
if (persistUpdate) {
await savePaginationPreferences();
sendSortingTelemetry();
}
emit('update:pagination-and-sort', {
sort,
});
sendSortingTelemetry();
};
const setCurrentPage = async (page: number, persistUpdate = true) => {