UI Fixes on Job list page. Refactored form row component. BOD-155
This commit is contained in:
@@ -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>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user