Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
zaliqarosli committed Dec 7, 2023
1 parent e3b0cd2 commit ec9bf33
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modules/candidate_parameters/jsx/DiagnosisEvolution.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ class DiagnosisEvolution extends Component {
let formattedDiagnosis = [];
Object.entries(JSON.parse(record.Diagnosis)).map((entry, index) => {
const [fieldName, dx] = entry;
formattedDiagnosis.push(<p key={index}>{fieldName}: <strong>{dx}</strong></p>);
formattedDiagnosis.push(
<p key={index}>{fieldName}: <strong>{dx}</strong></p>
);
});
let sourceFields = [];
record.sourceField.split(',').map((field, index) => {
Expand Down

0 comments on commit ec9bf33

Please # to comment.