Skip to content

Commit

Permalink
fix: patient summary screen fix for receptionist (openemr#6902)
Browse files Browse the repository at this point in the history
  • Loading branch information
bradymiller authored Oct 1, 2023
1 parent 64e5754 commit bb5f01f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions interface/patient_file/summary/demographics.php
Original file line number Diff line number Diff line change
Expand Up @@ -1037,8 +1037,10 @@ function setMyPatient() {
$cards = $allergy + $pl + $meds;
$col = "p-1 ";

$colInt = 12 / $cards;
$col .= "col-md-" . $colInt;
if ($cards > 0) {
$colInt = 12 / $cards;
$col .= "col-md-" . $colInt;
}

/**
* Helper function to return only issues with an outcome not equal to resolved
Expand Down

0 comments on commit bb5f01f

Please sign in to comment.