diff --git a/CHANGELOG.md b/CHANGELOG.md index 65bdf7b56c..fc5e1bf00c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ # Changelog All notable changes to this project will be documented in this file. +## [unreleased] +### Added + - Show locale date as tooltip for relative date time information + ## [8.5.0] - 2025-10-03 ### Fixed - Archived polls could not get entered anymore diff --git a/src/components/Activity/ActivityItem.vue b/src/components/Activity/ActivityItem.vue index 6b80ceca9c..7f3ee818f2 100644 --- a/src/components/Activity/ActivityItem.vue +++ b/src/components/Activity/ActivityItem.vue @@ -20,9 +20,7 @@ const props = defineProps({ }, }) -const dateActivityRelative = computed(() => - DateTime.fromISO(props.activity.datetime).toRelative(), -) +const dateActivity = computed(() => DateTime.fromISO(props.activity.datetime)) const message = computed(() => { const subject = props.activity.subject_rich[0] @@ -97,7 +95,11 @@ const message = computed(() => {