Skip to content

Commit

Permalink
SEBSERV-555 use "0" for no template selection
Browse files Browse the repository at this point in the history
  • Loading branch information
anhefti committed Jul 1, 2024
1 parent ee89d2a commit 900bbfe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ private Exam applyExamData(final Exam exam, final boolean deletion) {
? null
: exam.examTemplateId != null
? String.valueOf(exam.examTemplateId)
: null;
: "0";
final String quitPassword = deletion ? null : examConfigurationValueService.getQuitPassword(exam.id);
final String quitLink = deletion ? null : examConfigurationValueService.getQuitLink(exam.id);

Expand Down

0 comments on commit 900bbfe

Please sign in to comment.