Skip to content

Commit

Permalink
Fix Boostrap version in footer.tag
Browse files Browse the repository at this point in the history
  • Loading branch information
arey committed Dec 29, 2023
1 parent 3d71ba6 commit 3216913
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<spring-framework.version>6.1.2</spring-framework.version>

<!-- Web dependencies -->
<webjars-bootstrap.version>5.3.2</webjars-bootstrap.version>
<webjars-bootstrap.version>5.3.2</webjars-bootstrap.version> <!-- Report bootstrap version to the footer.tag -->
<webjars-font-awesome.version>4.7.0</webjars-font-awesome.version>
<webjars-flatpickr.version>4.6.13</webjars-flatpickr.version>

Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/WEB-INF/tags/footer.tag
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>

<%-- Bootstrap --%>
<spring:url value="/webjars/bootstrap/5.1.3/js/bootstrap.bundle.min.js" var="bootstrapJs"/>
<spring:url value="/webjars/bootstrap/5.3.2/js/bootstrap.bundle.min.js" var="bootstrapJs"/>
<script src="${bootstrapJs}"></script>

0 comments on commit 3216913

Please sign in to comment.