This commit is contained in:
Malai Raja
2023-12-30 18:29:42 +05:30
parent 51e4ea978f
commit 3ce0086e3c
12 changed files with 2316 additions and 150 deletions

View File

@@ -646,7 +646,9 @@ const Orders = () => {
<Tooltip title={row.pickupaddress}>
<Typography variant="caption" color="textSecondary"
>
{row.pickupaddress.slice(0, 20)}
{/* {row.pickupaddress.slice(0, 20)} */}
{row.locationsuburb || row.pickupaddress.slice(0, 20)}
</Typography>
</Tooltip>
</Stack>
@@ -658,7 +660,9 @@ const Orders = () => {
<Tooltip title={row.deliveryaddress}>
<Typography variant="caption" color="textSecondary"
>
{row.deliveryaddress.slice(0, 20)}
{/* {row.deliveryaddress.slice(0, 20)} */}
{row.customersuburb || row.deliveryaddress.slice(0, 20)}
</Typography>
</Tooltip>
</Stack>