From f1dc3a639c044189ada0be50c2129b09e1cb26c7 Mon Sep 17 00:00:00 2001 From: Bernt Christian Egeland Date: Sat, 1 Jul 2023 15:16:19 +0200 Subject: [PATCH] fixed TimeAgo abbreviation (#6977) * fixed TimeAgo abbreviation * Update web/src/components/TimeAgo.tsx Co-authored-by: Blake Blackshear --------- Co-authored-by: Blake Blackshear --- web/src/components/TimeAgo.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/src/components/TimeAgo.tsx b/web/src/components/TimeAgo.tsx index 7b5a914e7..b7ed45007 100644 --- a/web/src/components/TimeAgo.tsx +++ b/web/src/components/TimeAgo.tsx @@ -25,9 +25,9 @@ const timeAgo = ({ time, currentTime = new Date(), dense = false }: IProp): stri const elapsedTime: number = currentTime.getTime() - pastTime.getTime(); const timeUnits: TimeUnit[] = [ - { unit: 'ye', full: 'year', value: 31536000 }, + { unit: 'yr', full: 'year', value: 31536000 }, { unit: 'mo', full: 'month', value: 0 }, - { unit: 'day', full: 'day', value: 86400 }, + { unit: 'd', full: 'day', value: 86400 }, { unit: 'h', full: 'hour', value: 3600 }, { unit: 'm', full: 'minute', value: 60 }, { unit: 's', full: 'second', value: 1 }, @@ -58,11 +58,11 @@ const timeAgo = ({ time, currentTime = new Date(), dense = false }: IProp): stri if (monthDiff > 0) { const unitAmount = monthDiff; - return `${unitAmount}${dense ? timeUnits[i].unit[0] : ` ${timeUnits[i].full}`}${dense ? '' : 's'} ago`; + return `${unitAmount}${dense ? timeUnits[i].unit : ` ${timeUnits[i].full}`}${dense ? '' : 's'} ago`; } } else if (elapsed >= timeUnits[i].value) { const unitAmount: number = Math.floor(elapsed / timeUnits[i].value); - return `${unitAmount}${dense ? timeUnits[i].unit[0] : ` ${timeUnits[i].full}`}${dense ? '' : 's'} ago`; + return `${unitAmount}${dense ? timeUnits[i].unit : ` ${timeUnits[i].full}`}${dense ? '' : 's'} ago`; } } return 'Invalid Time';