update bux service monitoring

This commit is contained in:
2024-01-06 15:52:27 +07:00
parent ed10e2ad4a
commit 8e8b123f08

View File

@@ -400,7 +400,7 @@ export default function ServiceMonitoring() {
<TimelineConnector sx={{border: '0.5px dashed rgba(145, 158, 171, 0.32)', backgrounSize: '4px 4px' }} /> <TimelineConnector sx={{border: '0.5px dashed rgba(145, 158, 171, 0.32)', backgrounSize: '4px 4px' }} />
</TimelineSeparator> </TimelineSeparator>
<TimelineContent> <TimelineContent>
<Typography variant='h5' sx={{marginBottom: 2}}> {fDateSuffix(row.date)}</Typography> <Typography variant='h5' sx={{marginBottom: 2}}> {row.date ? fDateSuffix(row.date) : '-'}</Typography>
<Card sx={{paddinX:2, paddingY:2}} > <Card sx={{paddinX:2, paddingY:2}} >
<Stack direction={'row'} sx={{ alignItems: 'center', padding: 2, justifyContent: 'space-between' }}> <Stack direction={'row'} sx={{ alignItems: 'center', padding: 2, justifyContent: 'space-between' }}>
<Label> {row.time} </Label> <Label> {row.time} </Label>
@@ -530,7 +530,7 @@ export default function ServiceMonitoring() {
<TableBody> <TableBody>
<TableRow> <TableRow>
<TableCell> <TableCell>
<Label> {fDateTime(list.datetime)}</Label> <Label> {list.datetime ? fDateTime(list.datetime) : '-'}</Label>
</TableCell> </TableCell>
<TableCell>{list.examination}</TableCell> <TableCell>{list.examination}</TableCell>
<TableCell>{list.location}</TableCell> <TableCell>{list.location}</TableCell>