fix spellings and update changeset

Signed-off-by: Andrew Tran <atran@brex.com>
This commit is contained in:
Andrew Tran
2021-11-24 09:51:05 -06:00
parent 86ed770308
commit a73df1532f
3 changed files with 4 additions and 4 deletions
@@ -82,7 +82,7 @@ const CronJobSummary = ({ cronJob }: CronJobSummaryProps) => {
? `${cronJob.spec.schedule} (${cronstrue.toString(
cronJob.spec.schedule,
)})`
: '???'}
: 'N/A'}
</Typography>
</Grid>
</Grid>
@@ -34,7 +34,7 @@ export const JobDrawer = ({
return {
parallelism: jobObj.spec?.parallelism ?? '???',
completions: jobObj.spec?.completions ?? '???',
backOffLimit: jobObj.spec?.backoffLimit ?? '???',
backoffLimit: jobObj.spec?.backoffLimit ?? '???',
startTime: jobObj.status?.startTime ?? '???',
};
}}