Changeset 87c9f1e for src/sections/invoice/invoice-table-row.tsx
- Timestamp:
- 02/27/25 00:42:38 (5 weeks ago)
- Branches:
- main
- Children:
- 32e9876
- Parents:
- 3c5302a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sections/invoice/invoice-table-row.tsx
r3c5302a r87c9f1e 51 51 sent, 52 52 invoiceNumber, 53 createDate,53 issueDate, 54 54 dueDate, 55 55 status, … … 60 60 } = row; 61 61 62 console.log( createDate);62 console.log(issueDate); 63 63 64 64 const confirmSend = useBoolean(); … … 107 107 <TableCell> 108 108 <ListItemText 109 primary={format(new Date( createDate), 'dd MMM yyyy')}110 secondary={format(new Date( createDate), 'p')}109 primary={format(new Date(issueDate), 'dd MMM yyyy')} 110 secondary={format(new Date(issueDate), 'p')} 111 111 primaryTypographyProps={{ typography: 'body2', noWrap: true }} 112 112 secondaryTypographyProps={{
Note:
See TracChangeset
for help on using the changeset viewer.