fix: [CODE-2057]: fix for status checks showing wrong time (#2842)

* fix: [CODE-2057]: fix for status checks showing wrong time
This commit is contained in:
Karan Saraswat 2024-10-21 20:15:15 +00:00 committed by Harness
parent 503e62c979
commit a6bea60973

View File

@ -309,7 +309,7 @@ const ChecksSection = (props: ChecksSectionProps) => {
: 'checkStatus.error' : 'checkStatus.error'
)} )}
vars={{ vars={{
time: <>{timeDistance(check.check.created, check.check.updated)}</> time: <>{timeDistance(check.check.started, check.check.ended)}</>
}} }}
/> />
</Text> </Text>