We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30b75a5 commit 2b1fe27Copy full SHA for 2b1fe27
components/teamleader_focus/actions/update-company/update-company.mjs
@@ -117,6 +117,7 @@ export default {
117
business_type_id: this.businessTypeId,
118
vat_number: this.vatNumber,
119
national_identification_number: this.nationalIdentificationNumber,
120
+ website: this.website,
121
iban: this.iban,
122
bic: this.bic,
123
language: this.language,
components/teamleader_focus/sources/new-contact-added/new-contact-added.mjs
@@ -40,7 +40,7 @@ export default {
40
generateMeta(contact) {
41
return {
42
id: contact.id,
43
- summary: (contact.first_name || "") + " " + (contact.last_name || "").trim(),
+ summary: `${contact.first_name || ""} ${contact.last_name || ""}`.trim(),
44
ts: Date.parse(contact.added_at),
45
};
46
},
0 commit comments