From b04ba969290995134af00a881fd46e2a2d670565 Mon Sep 17 00:00:00 2001 From: Eric Date: Wed, 29 Oct 2025 14:10:44 -0500 Subject: [PATCH] Website: Update enrichment helper queries when organization is provided. (#34949) Changes: - Updated the get-enriched helper to only send a single query for organization name (if `organization` is provided). --- website/api/helpers/iq/get-enriched.js | 1 - 1 file changed, 1 deletion(-) diff --git a/website/api/helpers/iq/get-enriched.js b/website/api/helpers/iq/get-enriched.js index 434072e0fe..8d05d97617 100644 --- a/website/api/helpers/iq/get-enriched.js +++ b/website/api/helpers/iq/get-enriched.js @@ -208,7 +208,6 @@ module.exports = { dis_max: {// eslint-disable-line camelcase queries: [ { match_phrase: { name: { query: organization } } },// eslint-disable-line camelcase - { match: { name: { query: organization, operator: 'and', fuzziness: 'AUTO' } } } ] } });