UI Fixes on Job list page. Refactored form row component. BOD-155

This commit is contained in:
Patrick Fic
2020-06-12 15:04:16 -07:00
parent 12924fe13a
commit a88785fc43
26 changed files with 634 additions and 528 deletions

View File

@@ -9,16 +9,14 @@ export default function JobDetailCardTemplate({
...otherProps
}) {
let extra;
if (extraLink) extra = { extra: <Link to={extraLink} >More</Link> };
if (extraLink) extra = { extra: <Link to={extraLink}>More</Link> };
return (
<Card
size="small"
style={{ width: 290 }}
className="job-card"
size='small'
className='job-card'
title={title}
loading={loading}
{...extra}
>
{...extra}>
{otherProps.children}
</Card>
);