diff --git a/frontend/src/pages/Lead.vue b/frontend/src/pages/Lead.vue index c5952efb..52df360e 100644 --- a/frontend/src/pages/Lead.vue +++ b/frontend/src/pages/Lead.vue @@ -192,16 +192,18 @@ -
+
Created - + {{ timeAgo(lead.doc.creation) }} - +  ·  Updated - + {{ timeAgo(lead.doc.modified) }} - +
@@ -225,6 +227,7 @@ import { Autocomplete, FormControl, Dropdown, + Tooltip, } from 'frappe-ui' import { TransitionPresets, useTransition } from '@vueuse/core' import { usersStore } from '@/stores/users' @@ -436,4 +439,6 @@ const activeAgents = computed(() => { } }) }) + +const dateTooltipFormat = 'dddd, MMMM D, YYYY h:mm A'