From 7dfc3fb966163c2b1ce0c9b92b34f32f79545eb0 Mon Sep 17 00:00:00 2001 From: James Grugett Date: Thu, 7 Apr 2022 16:29:36 -0500 Subject: [PATCH] Reverse contract feed on contract page! --- web/components/feed/activity-items.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/components/feed/activity-items.ts b/web/components/feed/activity-items.ts index b2850f73..cf5d9967 100644 --- a/web/components/feed/activity-items.ts +++ b/web/components/feed/activity-items.ts @@ -309,6 +309,8 @@ export function getAllContractActivityItems( items.push({ type: 'resolve', id: `${contract.resolutionTime}`, contract }) } + if (!abbreviated) items.reverse() + return items }