From 28ba71720111844ee6e2411df69c55040f71e028 Mon Sep 17 00:00:00 2001 From: vipeeshpavithran Date: Wed, 6 Sep 2023 10:29:41 +0530 Subject: [PATCH] Display or Fill image marker accorsing to type --- src/Components/PatientForm/PatientForm.tsx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/Components/PatientForm/PatientForm.tsx b/src/Components/PatientForm/PatientForm.tsx index df0628b..4baaf46 100644 --- a/src/Components/PatientForm/PatientForm.tsx +++ b/src/Components/PatientForm/PatientForm.tsx @@ -20,6 +20,7 @@ import SystemReviewSection6 from './SyestemReviewSection6'; import RecreationalHobbiesSection7 from './RecreationalHobbiesSection7'; import OtherDetails8 from './OtherDetails8'; import PatientImageMarker from '../ImageMarker/PatientImageMarker'; +import ViewPatientImageMarker from '../ImageMarker/ViewPatientImageMarker'; const Accordion = styled((props: AccordionProps) => ( @@ -431,8 +432,14 @@ export default function PatientForm({type}:Props){ Patient's Injury Image - - + + { + type === 'fill' ? + + : + + } +