Skip to content

Commit

Permalink
Fix the bug to the display of the field name #1798
Browse files Browse the repository at this point in the history
  • Loading branch information
user committed Aug 19, 2024
1 parent 1414814 commit f253e9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dataedit/static/peer_review/opr_reviewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ function renderSummaryPageFields() {
row.appendChild(tdFieldCategory);

let tdFieldId = document.createElement('td');
tdFieldId.textContent = item.field_id;
tdFieldId.textContent = item.fieldName;
row.appendChild(tdFieldId);

let tdFieldValue = document.createElement('td');
Expand Down

0 comments on commit f253e9a

Please sign in to comment.