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
+2 -2
View File
@@ -1,5 +1,5 @@
---
'@backstage/plugin-kubernetes': minor
'@backstage/plugin-kubernetes': patch
---
Added accordions to display information on jobs and cronjobs in the kubernetes plugin. Updated the PodsTable with fewer default columns and the ability to pass in additional ones depending on the use case.
Added accordions to display information on Jobs and CronJobs in the kubernetes plugin. Updated the PodsTable with fewer default columns and the ability to pass in additional ones depending on the use case.
@@ -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 ?? '???',
};
}}