From 3c888475a57a7f1c8d921fb5dc2ca41c6ec5414d Mon Sep 17 00:00:00 2001 From: Daniel Sami Date: Fri, 3 Apr 2020 11:30:37 -0400 Subject: [PATCH] Changed displayed type name of plain jobs updated and added i18n removed import prettier --- awx/ui_next/src/components/JobList/JobListItem.jsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/awx/ui_next/src/components/JobList/JobListItem.jsx b/awx/ui_next/src/components/JobList/JobListItem.jsx index ea0eb86c3e..9f9b762331 100644 --- a/awx/ui_next/src/components/JobList/JobListItem.jsx +++ b/awx/ui_next/src/components/JobList/JobListItem.jsx @@ -15,7 +15,6 @@ import DataListCell from '@components/DataListCell'; import { RocketIcon } from '@patternfly/react-icons'; import LaunchButton from '@components/LaunchButton'; import StatusIcon from '@components/StatusIcon'; -import { toTitleCase } from '@util/strings'; import { formatDateString } from '@util/dates'; import { JOB_TYPE_URL_SEGMENTS } from '@constants'; import styled from 'styled-components'; @@ -36,6 +35,15 @@ function JobListItem({ }) { const labelId = `check-action-${job.id}`; + const jobTypes = { + project_update: i18n._(t`SCM Update`), + inventory_update: i18n._(t`Inventory Sync`), + job: i18n._(t`Playbook Run`), + command: i18n._(t`Command`), + management_job: i18n._(t`Management Job`), + workflow_job: i18n._(t`Workflow Job`), + }; + return ( @@ -62,7 +70,7 @@ function JobListItem({ ...(showTypeColumn ? [ - {toTitleCase(job.type)} + {jobTypes[job.type]} , ] : []),