Skip to content

Commit

Permalink
refactor: time --> timestamp (#1858)
Browse files Browse the repository at this point in the history
  • Loading branch information
nya-elimu authored Aug 25, 2024
2 parents 691d177 + 1999183 commit f3afd32
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 f3afd32

Please sign in to comment.