Skip to content

Commit

Permalink
fix: fix not_due label in the Clinical Reminders widget (openemr#7201)
Browse files Browse the repository at this point in the history
  • Loading branch information
bradymiller authored Feb 5, 2024
1 parent 520263d commit a7b6377
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/clinical_rules.php
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ function clinical_summary_widget($patient_id, $mode, $dateTarget = '', $organize
} elseif ($action['due_status'] == "due") {
echo "<span class='text-warning'>";
} elseif ($action['due_status'] == "not_due") {
echo "<span class='text-success>";
echo "<span class='text-success'>";
} else {
echo "<span>";
}
Expand Down

0 comments on commit a7b6377

Please sign in to comment.