Skip to content

Commit aacdc19

Browse files
committed
task: fix displaying of a translation for CANCELLED condition.
Correction for 0a38855 commit. Address to #1326
1 parent cf7b0a7 commit aacdc19

File tree

1 file changed

+1
-1
lines changed
  • src/main/webapp/WEB-INF/views/series

1 file changed

+1
-1
lines changed

src/main/webapp/WEB-INF/views/series/info.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ <h5 th:text="#{t_who_selling_series}">Who was selling/buying this series</h5>
585585
th:href="${transaction.transactionUrl}"
586586
th:text="${firstPrice + optionalSecondPrice}">100 USD</a>
587587
<!--/*/
588-
<th:block th:if="${transaction.condition != null}" th:switch="${transaction.condition}">
588+
<th:block th:if="${transaction.condition != null}" th:switch="${transaction.condition.toString()}">
589589
<span th:text="|(${#strings.unCapitalize('__#{t_cancelled}__')})|" th:case=" 'CANCELLED' ">cancelled</span>
590590
/*/-->
591591
<span th:text="|(${transaction.condition})|" th:case="*">(MNH)</span>

0 commit comments

Comments
 (0)