mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat(editor): Add telemetry events for data tables (no-changelog) (#19091)
This commit is contained in:
committed by
GitHub
parent
4313aa315f
commit
d666b65a7f
@@ -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
|
||||
|
||||
@@ -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) => {
|
||||
|
||||
Reference in New Issue
Block a user