Skip to content

Commit 346c6e8

Browse files
authored
[candidate_profile] Fix loading of instrument list (#10080)
The instrument list after expanding a visit does not have all of its data loaded, only the "Completion". This fixes the loading so that the testname/completion/etc are loaded and clickable.
1 parent 43f631f commit 346c6e8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

modules/instruments/php/visitsummary.class.inc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,12 @@ class VisitSummary extends \NDB_Page
122122
);
123123
continue;
124124
}
125+
126+
$rslt[$key] = [
127+
'Test_name' => $row['Test_name'],
128+
'CommentID' => $row['CommentID'],
129+
'NumOfConflict' => $row['NumOfConflict'],
130+
];
125131
if ($instrument === null) {
126132
$rslt[$key]['Completion'] = 0;
127133
} else {

0 commit comments

Comments
 (0)