Skip to content
Snippets Groups Projects
Commit f3a37ebd authored by Ruben Backx's avatar Ruben Backx :coffee:
Browse files

Fix academic period select in FlexDelft export

parent e4bbd5c1
Branches
No related tags found
1 merge request!418Deploy fix
Pipeline #1233918 passed with warnings
......@@ -111,9 +111,7 @@
th:each="period: ${periods}"
th:value="${period.id}"
th:text="${period.name}"
th:selected="${param.academicPeriods == null
|| #arrays.contains(
#strings.arraySplit(param.academicPeriods,','), period.id.toString())}" />
th:selected="${param.academicPeriods != null && param.academicPeriods.contains(period.id.toString())}" />
</select>
</div>
<div class="flex vertical gap-1">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment