Skip to content

Commit

Permalink
fix empty audit trail tab in dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
rkrenn committed Apr 6, 2024
1 parent 6c54eca commit 92f7e7e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5987,7 +5987,7 @@ protected ECRFFieldValuesOutVO handleGetEcrfFieldValue(AuthenticationVO auth, Lo
throws Exception {
CheckIDUtil.checkProbandListEntryId(probandListEntryId, this.getProbandListEntryDao());
ECRFField ecrfField = CheckIDUtil.checkEcrfFieldId(ecrfFieldId, this.getECRFFieldDao());
if (visitId == null) {
if (visitId != null) {
CheckIDUtil.checkVisitId(visitId, this.getVisitDao());
}
checkEcrfFieldValueIndex(ecrfField, probandListEntryId, visitId, ecrfFieldId, index);
Expand Down

0 comments on commit 92f7e7e

Please sign in to comment.