Skip to content

Commit

Permalink
fix the missing event properties issue (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuhao900914 authored May 7, 2024
1 parent f7a0827 commit 0da509c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions template.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ ___TEMPLATE_PARAMETERS___
},
{
"displayName": "Individual Event Properties",
"name": "eventPropertiesBasic",
"name": "eventProperties",
"simpleTableColumns": [
{
"defaultValue": "",
Expand Down Expand Up @@ -1461,7 +1461,7 @@ const onsuccess = () => {
break;
case 'track':
const propertiesBaisc = makeTableMap(data.eventPropertiesBasic || [], 'name', 'value');
const propertiesBaisc = makeTableMap(data.eventProperties || [], 'name', 'value');
const isValidPropertiesObject = data.eventPropertiesObject && isValidObject(data.eventPropertiesObject);
let eventProperties = propertiesBaisc;
if (isValidPropertiesObject) {
Expand Down

0 comments on commit 0da509c

Please sign in to comment.