Skip to content

Commit

Permalink
Merge pull request #4427 from alisman/no-style-atts
Browse files Browse the repository at this point in the history
Do not show style attributes in timeline data table on patient page
  • Loading branch information
alisman authored Nov 21, 2022
2 parents b2ad3a2 + d5a100c commit 60d3a07
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/pages/patientView/timeline/ClinicalEventsTables.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ const ClinicalEventsTables: React.FunctionComponent<{
if (['PATIENT_ID'].includes(item)) {
aggr.push(i);
}
if (/^STYLE_/.test(item)) {
aggr.push(i);
}
return aggr;
},
[]
Expand Down

0 comments on commit 60d3a07

Please sign in to comment.