diff --git a/interface/patient_file/summary/add_edit_issue.php b/interface/patient_file/summary/add_edit_issue.php index 4299d8b8003..0edfd022783 100644 --- a/interface/patient_file/summary/add_edit_issue.php +++ b/interface/patient_file/summary/add_edit_issue.php @@ -812,7 +812,10 @@ function divclick(cb, divid) { $checked = ($index == $type_index) ? " checked" : ''; $disabled = (!AclMain::aclCheckIssue($key, '', ['write', 'addonly'])) ? " disabled" : ''; $str = ''; - echo vsprintf($str, [attr($index), attr_js($index), $checked, $disabled]); + if ($key != 'medical_device') { /* rm/brady millr - medical device does not work correctly */ + echo vsprintf($str, [attr($index), attr_js($index), $checked, $disabled]); + echo text($value[1] . " "); /*rm - display issue type name */ + } } ++$index;