IO-1891 Add owner Note.

This commit is contained in:
Patrick Fic
2022-05-26 12:09:36 -07:00
parent 7f3b1413d7
commit e1e5dda710
11 changed files with 80 additions and 30 deletions

View File

@@ -59,6 +59,14 @@ export default function OwnerFindModalComponent({
<PhoneFormatter>{record.ownr_ph2}</PhoneFormatter>
),
},
{
title: t("owners.fields.note"),
dataIndex: "note",
key: "note",
render: (text, record) => (
<span style={{ whiteSpace: "pre" }}>{record.note}</span>
),
},
];
const handleOnRowClick = (record) => {