feat: Show notification last active time instead of created time (#8724)

This commit is contained in:
Muhsin Keloth
2024-01-18 09:41:53 +05:30
committed by GitHub
parent 896473f03e
commit eb972684b3
3 changed files with 3 additions and 2 deletions

View File

@@ -56,7 +56,7 @@
<span
class="mt-1 text-slate-500 dark:text-slate-400 text-xxs font-semibold flex"
>
{{ dynamicTime(notificationItem.created_at) }}
{{ dynamicTime(notificationItem.last_activity_at) }}
</span>
</div>
</div>

View File

@@ -58,7 +58,7 @@
<td>
<div class="text-right timestamp--column">
<span class="notification--created-at">
{{ dynamicTime(notificationItem.created_at) }}
{{ dynamicTime(notificationItem.last_activity_at) }}
</span>
</div>
</td>