From 0d1e962999895597260d8165feeb1d84d27d743a Mon Sep 17 00:00:00 2001 From: Dejvino Date: Sun, 28 May 2023 15:07:34 +0200 Subject: [PATCH] Add tags to job accordion --- src/app/components/job/JobsAccordion.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/components/job/JobsAccordion.tsx b/src/app/components/job/JobsAccordion.tsx index 7b8530a..1111a46 100644 --- a/src/app/components/job/JobsAccordion.tsx +++ b/src/app/components/job/JobsAccordion.tsx @@ -3,6 +3,7 @@ import React from 'react'; import { Job } from '@/PersonalDataTypes'; import { Accordion, Row } from 'react-bootstrap'; import { JobListProps } from './types'; +import JobTags from './JobTags'; export type Props = { @@ -33,7 +34,8 @@ export default function JobsAccordion(props: JobListProps) { - {jobs.current.position} + {jobs.current.description} + {jobs.current.tags && } )} @@ -42,6 +44,7 @@ export default function JobsAccordion(props: JobListProps) { {job.description} + {job.tags && } ))}