Przeglądaj źródła

Replace hidden job card p with div to avoid markdown nesting p elements

master
Dejvino 11 miesięcy temu
rodzic
commit
d4b09eefd6
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      src/app/components/job/JobCard.tsx

+ 1
- 1
src/app/components/job/JobCard.tsx Wyświetl plik

@@ -36,7 +36,7 @@ export default function JobCard(props: Props) {
{props.company && props.timerange && <span>, </span>}
{props.timerange && <span className='timerange'>{props.timerange}</span>}
</Card.Subtitle>
<Card.Text className='multiline'>{md(props.description)}</Card.Text>
<div className='multiline job-description'>{md(props.description)}</div>
{props.tags && <JobTags tags={props.tags} />}
</Card.Body>
</Card>


Ładowanie…
Anuluj
Zapisz