Skip to content

Commit 2e39724

Browse files
authored
Merge pull request #2030 from OWASP/renovate/datatables.version
fix(deps): update dependency org.webjars:datatables to v2.3.0
2 parents 0a3ae71 + 04d4a2f commit 2e39724

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
<bootstrap.version>5.3.5</bootstrap.version>
5151
<com.azure.spring.version>5.22.0</com.azure.spring.version>
5252
<cyclonedx.core.version>10.2.1</cyclonedx.core.version>
53-
<datatables.version>2.1.8</datatables.version>
53+
<datatables.version>2.3.0</datatables.version>
5454
<dependency-check-maven.version>12.1.1</dependency-check-maven.version>
5555
<gatling-maven-plugin.version>4.19.0</gatling-maven-plugin.version>
5656
<gatling.version>3.14.1</gatling.version>

src/main/resources/templates/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="UTF-8">
66
<title>OWASP WrongSecrets</title>
77
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
8-
<link th:rel="stylesheet" th:href="@{/webjars/datatables/2.1.8/css/dataTables.bootstrap5.min.css} " />
8+
<link th:rel="stylesheet" th:href="@{/webjars/datatables/2.3.0/css/dataTables.bootstrap5.min.css} " />
99
<link th:rel="stylesheet" th:href="@{/webjars/bootstrap/5.3.5/css/bootstrap.min.css} " />
1010
<link rel="stylesheet" type="text/css" th:href="@{/css/style.css}" />
1111
<link rel="stylesheet" type="text/css" th:href="@{/css/dark.css}" />
@@ -21,8 +21,8 @@
2121
<script th:src="@{/webjars/bootstrap/5.3.5/js/bootstrap.bundle.min.js}"></script>
2222
<script th:src="@{/webjars/github-buttons/2.14.1/dist/buttons.min.js}"></script>
2323
<script th:src="@{/webjars/jquery/3.7.1/jquery.min.js}"></script>
24-
<script th:src="@{/webjars/datatables/2.1.8/js/dataTables.min.js}"></script>
25-
<script th:src="@{/webjars/datatables/2.1.8/js/dataTables.bootstrap5.min.js}"></script>
24+
<script th:src="@{/webjars/datatables/2.3.0/js/dataTables.min.js}"></script>
25+
<script th:src="@{/webjars/datatables/2.3.0/js/dataTables.bootstrap5.min.js}"></script>
2626
<script th:if="${allCompleted} eq 'party'">
2727
window.addEventListener("load", function () {
2828
new bootstrap.Modal(document.getElementById('finishedModal'), {}).toggle()
@@ -42,7 +42,7 @@
4242
});
4343
$(document).ready(function () {
4444
$('#challenge_overview').DataTable({
45-
lengthMenu: [ [25, 30, 50, -1], [25, 30, 50, "All"] ]
45+
lengthMenu: [ [30, 50, -1], [30, 50, "All"] ]
4646
});
4747
});
4848
</script>

0 commit comments

Comments
 (0)