umwd-components 0.1.618 → 0.1.620
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/node_modules/base64-js/index.js +1 -1
- package/dist/node_modules/ieee754/index.js +1 -1
- package/dist/src/components/logistics/vendor/EditVendorForm.js +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/types/logistics/Vendor.d.ts +3 -1
- package/package.json +1 -1
- package/src/components/logistics/vendor/EditVendorForm.tsx +7 -2
- package/src/types/logistics/Vendor.ts +1 -1
package/package.json
CHANGED
|
@@ -56,6 +56,7 @@ export function EditVendorForm({
|
|
|
56
56
|
address,
|
|
57
57
|
products,
|
|
58
58
|
contacts,
|
|
59
|
+
notes,
|
|
59
60
|
} = data;
|
|
60
61
|
console.log("data", data);
|
|
61
62
|
|
|
@@ -278,8 +279,12 @@ export function EditVendorForm({
|
|
|
278
279
|
</IconButton>
|
|
279
280
|
</Grid>
|
|
280
281
|
<Grid item xs={12}>
|
|
281
|
-
{
|
|
282
|
-
|
|
282
|
+
{/*
|
|
283
|
+
{oldContacts?.map((contact, index) => {
|
|
284
|
+
if (contact.data?.id) {
|
|
285
|
+
*/}
|
|
286
|
+
{notes?.data !== undefined ? (
|
|
287
|
+
<NotesDisplay notes={notes.data} />
|
|
283
288
|
) : (
|
|
284
289
|
<Typography>No notes</Typography>
|
|
285
290
|
)}
|