Merge pull request #6564 from dsesami/column-type-name-change

Changed column label for plain jobs to "Playbook Run" to align with search

Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
softwarefactory-project-zuul[bot] 2020-04-03 20:38:20 +00:00 committed by GitHub
commit bc244b3600
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 (
<DataListItem aria-labelledby={labelId} id={`${job.id}`}>
<DataListItemRow>
@ -62,7 +70,7 @@ function JobListItem({
...(showTypeColumn
? [
<DataListCell key="type" aria-label="type">
{toTitleCase(job.type)}
{jobTypes[job.type]}
</DataListCell>,
]
: []),