umwd-components 0.1.619 → 0.1.621
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/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 +4 -7
- package/src/types/logistics/Vendor.ts +1 -1
package/package.json
CHANGED
|
@@ -279,14 +279,11 @@ export function EditVendorForm({
|
|
|
279
279
|
</IconButton>
|
|
280
280
|
</Grid>
|
|
281
281
|
<Grid item xs={12}>
|
|
282
|
-
|
|
283
|
-
{
|
|
284
|
-
|
|
285
|
-
*/}
|
|
286
|
-
{notes !== undefined ? (
|
|
287
|
-
<NotesDisplay notes={notes} />
|
|
282
|
+
<Typography variant="h6">Notes</Typography>
|
|
283
|
+
{notes?.data !== undefined ? (
|
|
284
|
+
<NotesDisplay notes={notes.data} />
|
|
288
285
|
) : (
|
|
289
|
-
<Typography>No notes</Typography>
|
|
286
|
+
<Typography>No notes to display</Typography>
|
|
290
287
|
)}
|
|
291
288
|
</Grid>
|
|
292
289
|
|