Skip to content

Commit

Permalink
refactor: time --> timestamp
Browse files Browse the repository at this point in the history
refs #1678
  • Loading branch information
jo-elimu committed Aug 25, 2024
1 parent 691d177 commit 1999183
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<c:forEach var="letterLearningEvent" items="${letterLearningEvents}">
<tr class="letterLearningEvent">
<td>
<fmt:formatDate value="${letterLearningEvent.time.time}" pattern="yyyy-MM-dd HH:mm:ss" />
<fmt:formatDate value="${letterLearningEvent.timestamp.time}" pattern="yyyy-MM-dd HH:mm:ss" />
</td>
<td>
${letterLearningEvent.androidId}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<c:forEach var="wordLearningEvent" items="${wordLearningEvents}">
<tr class="wordLearningEvent">
<td>
<fmt:formatDate value="${wordLearningEvent.time.time}" pattern="yyyy-MM-dd HH:mm:ss" />
<fmt:formatDate value="${wordLearningEvent.timestamp.time}" pattern="yyyy-MM-dd HH:mm:ss" />
</td>
<td>
${wordLearningEvent.androidId}
Expand Down

0 comments on commit 1999183

Please sign in to comment.