Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
zamzfz committed Oct 17, 2023
1 parent bd5abf5 commit 1e1cde5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/react-components/src/Jobs/JobList/JobList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const JobList = (props: JobListProps) => {
const [date, setDate] = useState<DateProps>(initialDateState);
const [selectedRow, setSelectedRow] = useState<string>('');
const [sorting, setSorting] = useState<Sorting[]>([{ 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);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,11 @@ export const Cell = (props: any) => {
textOverflow: 'ellipsis',
overflow: 'hidden'
}}>
{adjustedValue}
<Typography variant='body2' style={{
paddingLeft: 10
}}>
{adjustedValue}
</Typography>
</div>
</td>
);
Expand Down

0 comments on commit 1e1cde5

Please sign in to comment.