Skip to content

Commit 4af550e

Browse files
committed
updates
1 parent ed0deef commit 4af550e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

components/nextlead/sources/new-lead-added-to-list/new-lead-added-to-list.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default {
1414
return {
1515
id: lead.id,
1616
summary: "Lead Added to List",
17-
ts: Date.parse(lead.created_at),
17+
ts: Date.parse(lead.result.created_at),
1818
};
1919
},
2020
},

components/nextlead/sources/new-lead-created/new-lead-created.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default {
1414
return {
1515
id: lead.id,
1616
summary: "New Lead Created",
17-
ts: Date.parse(lead.created_at),
17+
ts: Date.now(),
1818
};
1919
},
2020
},

components/nextlead/sources/new-lead-updated/new-lead-updated.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default {
1414
return {
1515
id: lead.id,
1616
summary: "Lead Updated",
17-
ts: Date.parse(lead.updated_at),
17+
ts: Date.now(),
1818
};
1919
},
2020
},

0 commit comments

Comments
 (0)