Skip to content

Commit a7a269f

Browse files
committed
fix: Widen up the execInfo Thymeleaf object for the default mail template
1 parent 1c5c938 commit a7a269f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<maven.site.skip>true</maven.site.skip>
4848

4949
<!-- used dependencies versions -->
50-
<spring-boot.version>4.0.5</spring-boot.version>
50+
<spring-boot.version>4.0.6</spring-boot.version>
5151
<spring-cloud.version>2025.1.1</spring-cloud.version>
5252

5353
<jolokia-support-springboot.version>2.5.1</jolokia-support-springboot.version>

spring-boot-admin-server/src/main/resources/META-INF/spring-boot-admin-server/mail/status-changed.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ <h2>Status Details</h2>
7777
<th:block th:each="detail : ${details}">
7878
<dt th:text="${detail.key}"/>
7979
<dd th:unless="${detail.value instanceof T(java.util.Map)}" th:text="${detail.value}"/>
80-
<dd th:if="${detail.value instanceof T(java.util.Map)}">
81-
<dl th:replace="${#execInfo.templateName} :: statusDetails (details = ${detail.value})"/>
80+
<dd th:if="${detail.value instanceof T(java.util.Map)}" th:with="templateName = ${#execInfo.templateName}">
81+
<dl th:replace="${templateName} :: statusDetails (details = ${detail.value})"/>
8282
</dd>
8383
</th:block>
8484
</dl>

0 commit comments

Comments
 (0)