Skip to content

Commit 2b1fe27

Browse files
committed
updates
1 parent 30b75a5 commit 2b1fe27

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

components/teamleader_focus/actions/update-company/update-company.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ export default {
117117
business_type_id: this.businessTypeId,
118118
vat_number: this.vatNumber,
119119
national_identification_number: this.nationalIdentificationNumber,
120+
website: this.website,
120121
iban: this.iban,
121122
bic: this.bic,
122123
language: this.language,

components/teamleader_focus/sources/new-contact-added/new-contact-added.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export default {
4040
generateMeta(contact) {
4141
return {
4242
id: contact.id,
43-
summary: (contact.first_name || "") + " " + (contact.last_name || "").trim(),
43+
summary: `${contact.first_name || ""} ${contact.last_name || ""}`.trim(),
4444
ts: Date.parse(contact.added_at),
4545
};
4646
},

0 commit comments

Comments
 (0)