Skip to content

Commit 37cc17e

Browse files
committed
## 3.0.0.rc.3
* fixed #403 Task pagination is broken due to dependencies * fixed #407 update Last Login Date is broken
1 parent 21c9785 commit 37cc17e

File tree

1 file changed

+6
-4
lines changed
  • src/main/resources/templates/user/messages

1 file changed

+6
-4
lines changed

src/main/resources/templates/user/messages/all.html

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ <h2>
2222

2323
<div th:fragment="mytwcontent">
2424

25-
<form id="formId" th:action="@{/user2user/{userId}/messages/(userId=${otherUser.id})}"
26-
th:object="${newUser2UserMessage}" method="post">
25+
<div th:with="myUrlPath=@{/user2user/{userId}/messages(userId=${otherUser.id})}">
26+
27+
<form id="formId" th:action="${myUrlPath}" th:object="${newUser2UserMessage}" method="post">
2728
<div class="row">
2829
<div class="col">
2930
<div class="card card-body" id="newUser2UserMessageForm">
@@ -75,8 +76,9 @@ <h2>
7576
</div>
7677
</div>
7778

78-
<div th:replace="~{layout/tasks :: tw-tasks-pagination(page=${user2UserMessagePage})}">
79-
</div>
79+
<div th:replace="~{layout/tasks :: tw-tasks-pagination(page=${user2UserMessagePage}, myTaskState='', myUrlPath=${myUrlPath})}"></div>
80+
81+
</div>
8082
</div>
8183
</body>
8284
</html>

0 commit comments

Comments
 (0)