diff --git a/frontend/src/components/cytology/CytologyCaseView.js b/frontend/src/components/cytology/CytologyCaseView.js
index 27837c8de9..50fc46fad4 100644
--- a/frontend/src/components/cytology/CytologyCaseView.js
+++ b/frontend/src/components/cytology/CytologyCaseView.js
@@ -39,11 +39,17 @@ export const QuestionnaireResponse = ({ questionnaireResponse }) => {
return (
<>
- {item.text}:
- {item.answer &&
- item.answer.map((answer, index) => {
- return {renderAnswer(answer)};
- })}
+
+
+ {item.text}:
+
+
+ {item.answer &&
+ item.answer.map((answer, index) => {
+ return {renderAnswer(answer)};
+ })}
+
+
>
);
diff --git a/frontend/src/components/immunohistochemistry/ImmunohistochemistryCaseView.js b/frontend/src/components/immunohistochemistry/ImmunohistochemistryCaseView.js
index 9ce23022f6..29d731e94e 100644
--- a/frontend/src/components/immunohistochemistry/ImmunohistochemistryCaseView.js
+++ b/frontend/src/components/immunohistochemistry/ImmunohistochemistryCaseView.js
@@ -38,11 +38,15 @@ export const QuestionnaireResponse = ({ questionnaireResponse }) => {
return (
<>
- {item.text}:
- {item.answer &&
- item.answer.map((answer, index) => {
- return {renderAnswer(answer)};
- })}
+
+ {item.text}:
+
+ {item.answer &&
+ item.answer.map((answer, index) => {
+ return {renderAnswer(answer)};
+ })}
+
+
>
);
diff --git a/frontend/src/components/pathology/PathologyCaseView.js b/frontend/src/components/pathology/PathologyCaseView.js
index bfe5d07e9e..15f81024da 100644
--- a/frontend/src/components/pathology/PathologyCaseView.js
+++ b/frontend/src/components/pathology/PathologyCaseView.js
@@ -39,11 +39,17 @@ export const QuestionnaireResponse = ({ questionnaireResponse }) => {
return (
<>
- {item.text}:
- {item.answer &&
- item.answer.map((answer, index) => {
- return {renderAnswer(answer)};
- })}
+
+
+ {item.text}:
+
+
+ {item.answer &&
+ item.answer.map((answer, index) => {
+ return {renderAnswer(answer)};
+ })}
+
+
>
);