src/main/webapp/WEB-INF/jsp/issue-view.jsp

changeset 386
41ce87983ab5
parent 380
a14b143330c4
--- a/src/main/webapp/WEB-INF/jsp/issue-view.jsp	Sun Sep 14 14:06:16 2025 +0200
+++ b/src/main/webapp/WEB-INF/jsp/issue-view.jsp	Sun Sep 14 15:42:23 2025 +0200
@@ -169,7 +169,14 @@
     </tr>
     <tr>
         <th><fmt:message key="issue.eta"/></th>
-        <td><fmt:formatDate value="${issue.eta}" timeZone="${timezone}"/></td>
+        <td>
+            <c:if test="${not empty issue.eta}">
+                <fmt:formatDate value="${issue.eta}" timeZone="${timezone}"/>
+            </c:if>
+            <c:if test="${empty issue.eta}">
+                <fmt:message key="placeholder.null-eta" />
+            </c:if>
+        </td>
     </tr>
     </tbody>
 </table>

mercurial