From 1e1cde5f189f0461c74348c3b682a7efffe5df08 Mon Sep 17 00:00:00 2001 From: "finz@dhigroup.com" Date: Tue, 17 Oct 2023 12:59:07 +0700 Subject: [PATCH] fix style --- packages/react-components/src/Jobs/JobList/JobList.tsx | 2 +- .../react-components/src/Jobs/JobList/helpers/helpers.tsx | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/packages/react-components/src/Jobs/JobList/JobList.tsx b/packages/react-components/src/Jobs/JobList/JobList.tsx index c64b2555..cda32276 100644 --- a/packages/react-components/src/Jobs/JobList/JobList.tsx +++ b/packages/react-components/src/Jobs/JobList/JobList.tsx @@ -91,7 +91,7 @@ const JobList = (props: JobListProps) => { const [date, setDate] = useState(initialDateState); const [selectedRow, setSelectedRow] = useState(''); const [sorting, setSorting] = useState([{ columnName: 'requested', direction: 'desc' }]); - const [hideWorkflowPrefix, setHideWorkflowPrefix] = useState(true); + const [hideWorkflowPrefix, setHideWorkflowPrefix] = useState(false); const [tableColumnExtensions] = useState([{ columnName: 'status', width: 120 }]); const latestJobs = useRef(null); diff --git a/packages/react-components/src/Jobs/JobList/helpers/helpers.tsx b/packages/react-components/src/Jobs/JobList/helpers/helpers.tsx index c529270f..6c753a37 100644 --- a/packages/react-components/src/Jobs/JobList/helpers/helpers.tsx +++ b/packages/react-components/src/Jobs/JobList/helpers/helpers.tsx @@ -61,7 +61,11 @@ export const Cell = (props: any) => { textOverflow: 'ellipsis', overflow: 'hidden' }}> - {adjustedValue} + + {adjustedValue} + );