Merge remote-tracking branch 'origin/staging' into origin/production
This commit is contained in:
@@ -203,6 +203,8 @@ type ServiceMonitoringProps = {
|
||||
}[];
|
||||
}>
|
||||
>;
|
||||
keterangan: string;
|
||||
catatan: string;
|
||||
};
|
||||
|
||||
export default function ServiceMonitoring() {
|
||||
@@ -591,6 +593,44 @@ export default function ServiceMonitoring() {
|
||||
)}
|
||||
</Grid> */}
|
||||
</Grid>
|
||||
{/* Keterangan */}
|
||||
<Grid item container xs={12} spacing={1.5}>
|
||||
<Grid item xs={12}>
|
||||
<Typography variant="subtitle2" color={'grey.600'}>
|
||||
{loading ? <Skeleton animation={'wave'} width={200} /> : 'Keterangan'}
|
||||
</Typography>
|
||||
</Grid>
|
||||
<Grid item xs={12}>
|
||||
<Typography variant="subtitle1" color={'grey.800'}>
|
||||
{loading ? (
|
||||
<Skeleton animation={'wave'} width={300} />
|
||||
) : data && data.keterangan ? (
|
||||
data.keterangan
|
||||
) : (
|
||||
'-'
|
||||
)}
|
||||
</Typography>
|
||||
</Grid>
|
||||
</Grid>
|
||||
{/* Catatan */}
|
||||
<Grid item container xs={12} spacing={1.5}>
|
||||
<Grid item xs={12}>
|
||||
<Typography variant="subtitle2" color={'grey.600'}>
|
||||
{loading ? <Skeleton animation={'wave'} width={200} /> : 'Catatan'}
|
||||
</Typography>
|
||||
</Grid>
|
||||
<Grid item xs={12}>
|
||||
<Typography variant="subtitle1" color={'grey.800'}>
|
||||
{loading ? (
|
||||
<Skeleton animation={'wave'} width={300} />
|
||||
) : data && data.catatan ? (
|
||||
data.catatan
|
||||
) : (
|
||||
'-'
|
||||
)}
|
||||
</Typography>
|
||||
</Grid>
|
||||
</Grid>
|
||||
|
||||
</Grid>
|
||||
</Grid>
|
||||
|
||||
Reference in New Issue
Block a user