Skip to content

Commit 44df3ce

Browse files
committed
fixed #401 Migrate spring-boot from 2 to 3
1 parent 74a31d0 commit 44df3ce

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/main/resources/templates/layout/projects.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
</span>
2727
<span th:if="${rootProjects != null and rootProjects.size() gt 0}">
2828
<ul
29-
th:include="~{this :: tw-project-submenu(projectList=${rootProjects},thisProject=${thisProject})}"
29+
th:insert="~{this :: tw-project-submenu(projectList=${rootProjects},thisProject=${thisProject})}"
3030
style="list-style: none;">
3131
</ul>
3232
</span>
@@ -61,7 +61,7 @@
6161
</a>
6262

6363
<span th:if="${project.children.size() gt 0}">
64-
<ul th:include="~{this :: tw-project-submenu(projectList=${project.children},thisProject=${thisProject})}"
64+
<ul th:insert="~{this :: tw-project-submenu(projectList=${project.children},thisProject=${thisProject})}"
6565
style="list-style: none;">
6666
</ul>
6767
</span>

src/main/resources/templates/taskstate/completed.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
xmlns:th="http://www.thymeleaf.org"
55
xmlns:sec="http://www.thymeleaf.org/extras/spring-security"
66
xmlns:sd="http://www.thymeleaf.org/spring-data">
7-
<head th:replace="~{layout/page :: tw-page-head(headtitle=~{::title},links=~{},refreshMessages=false)">
7+
<head th:replace="~{layout/page :: tw-page-head(headtitle=~{::title},links=~{},refreshMessages=false)}">
88
<title th:text="'SimpleWorklist | ' + #{tasks.completed.h1}">Title</title>
99
</head>
10-
<body th:replace="~{layout/page :: tw-page-body(twcontent=~{::mytwcontent},twtitle=~{::mytwtitle},scripts=~{})">
10+
<body th:replace="~{layout/page :: tw-page-body(twcontent=~{::mytwcontent},twtitle=~{::mytwtitle},scripts=~{})}">
1111

1212
<div th:fragment="mytwtitle">
1313
<div id="tw-content-title">

src/main/resources/templates/taskstate/waiting.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
xmlns:th="http://www.thymeleaf.org"
55
xmlns:sec="http://www.thymeleaf.org/extras/spring-security"
66
xmlns:sd="http://www.thymeleaf.org/spring-data">
7-
<head th:replace="~{layout/page :: tw-page-head(headtitle=~{::title},links=~{},refreshMessages=false)">
7+
<head th:replace="~{layout/page :: tw-page-head(headtitle=~{::title},links=~{},refreshMessages=false)}">
88
<title th:text="'SimpleWorklist | ' + #{tasks.waiting.h1}">Title</title>
99
</head>
10-
<body th:replace="~{layout/page :: tw-page-body(twcontent=~{::mytwcontent},twtitle=~{::mytwtitle},scripts=~{})">
10+
<body th:replace="~{layout/page :: tw-page-body(twcontent=~{::mytwcontent},twtitle=~{::mytwtitle},scripts=~{})}">
1111

1212
<div th:fragment="mytwtitle">
1313
<div id="tw-content-title">

0 commit comments

Comments
 (0)