From 0ec98019b320573c4eda705f84a60f3dca64fa42 Mon Sep 17 00:00:00 2001 From: adele-usdr <146878468+adele-usdr@users.noreply.github.com> Date: Mon, 16 Oct 2023 19:29:24 -0700 Subject: [PATCH] fix: #949 update interested grants count labels (#2097) Update totalRows and label to use counts that are filtered or not filtered properly. Co-authored-by: Tyler Hendrickson --- packages/client/src/views/RecentActivity.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/client/src/views/RecentActivity.vue b/packages/client/src/views/RecentActivity.vue index c9dc2cbe2..9bb4adea3 100644 --- a/packages/client/src/views/RecentActivity.vue +++ b/packages/client/src/views/RecentActivity.vue @@ -53,7 +53,7 @@ - {{ grantsInterested.length }} of {{ totalRows }} + {{ totalInterestedGrants }} of {{ totalRows }} @@ -166,7 +166,7 @@ export default { })); }, totalRows() { - return this.totalInterestedGrants; + return this.grantsInterested.length; }, }, watch: {