From e2b56e08c283fb010c50cfe613d738b038f7bd71 Mon Sep 17 00:00:00 2001 From: MillenniumFalconMechanic Date: Mon, 5 Apr 2021 18:04:33 -0700 Subject: [PATCH] Updated explore link from search. Resolves #907. --- src/utils/explore/fileSummary.service.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/explore/fileSummary.service.js b/src/utils/explore/fileSummary.service.js index 7f047b8aa..1b96207bd 100644 --- a/src/utils/explore/fileSummary.service.js +++ b/src/utils/explore/fileSummary.service.js @@ -127,8 +127,8 @@ function buildFacetSearchTerms(terms) { return terms.map(term => { return { - term: term, - termDisplayName: term.term || "Unspecified" + term: term.term || "Unspecified", + count: term.count }; }); }