Skip to content

Commit 6053221

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

2 files changed

Lines changed: 2 additions & 2 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.6.0</jolokia-support-springboot.version>

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

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

0 commit comments

Comments
 (0)