Skip to content

Commit

Permalink
[Examiner] fix missing edit examiner url-link (#9449)
Browse files Browse the repository at this point in the history
The useCertification check in the formatter was pointing to the wrong place, resulting in the "Examiner" name not being a link when useCertification is enabled.
  • Loading branch information
kongtiaowang authored Nov 11, 2024
1 parent f96fd42 commit 2272537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/examiner/jsx/examinerIndex.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ class ExaminerIndex extends Component {

switch (column) {
case 'Examiner':
if (this.state.data.useCertification) {
if (this.state.data.fieldOptions.useCertification) {
const url = loris.BaseURL + '/examiner/editExaminer/?identifier=' +
row.ID;
result = <td><a href={url}>{cell}</a></td>;
Expand Down

0 comments on commit 2272537

Please sign in to comment.