From 1e5743b1596276307f3028d5767488a7ffe11c4c Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Sat, 1 Oct 2022 20:32:18 +0530 Subject: showing emails/phones as mailto: and tel: links --- src/classes/client.js | 4 ++-- src/components/tables/client-table.js | 15 ++++++++++----- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/src/classes/client.js b/src/classes/client.js index 6785c90..842c5e5 100644 --- a/src/classes/client.js +++ b/src/classes/client.js @@ -67,6 +67,6 @@ export const getAllClients = (ok, fail) => { export const editClient = (client, ok, fail) => { axios.put(`/client/${client.Id}`, client) - .then(res => ok()) - .catch(err => fail()) + .then(res => ok(res)) + .catch(err => fail(err)) } diff --git a/src/components/tables/client-table.js b/src/components/tables/client-table.js index d3b5c25..eb13308 100644 --- a/src/components/tables/client-table.js +++ b/src/components/tables/client-table.js @@ -50,15 +50,20 @@ const ClientTable = (props) => {

Contact: {i.Contact.Name}

Phone Number{i.Contact.Phones.length === 1 ? '' : 's'}: - {i.Contact.Phones.map((j, id) => ` ${j}${id + 1 === i.Contact.Phones.length ? '' : ','}`)} + {i.Contact.Phones.map((j, id) => {` ${j}${id + 1 === i.Contact.Phones.length ? '' : ','}`})}
Email Address{i.Contact.Emails.length === 1 ? '' : 'es'}: - {i.Contact.Emails.map((j, id) => ` ${j}${id + 1 === i.Contact.Emails.length ? '' : ','}`)} + {i.Contact.Emails.map((j, id) => {` ${j}${id + 1 === i.Contact.Emails.length ? '' : ','}`})}
- {i.Contact.Website.length > 0 && 0 && + {i.Contact.Website} + ? i.Contact.Website : 'https://' + i.Contact.Website}`} + target="noreferrer noopener" + > + {i.Contact.Website} + }

-- cgit v1.2.3