Skip to content

Commit 2272537

Browse files
authored
[Examiner] fix missing edit examiner url-link (#9449)
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.
1 parent f96fd42 commit 2272537

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/examiner/jsx/examinerIndex.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ class ExaminerIndex extends Component {
146146

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

0 commit comments

Comments
 (0)