From 424839ba7679a817072de6f1f2ecc805117d7b09 Mon Sep 17 00:00:00 2001 From: Toomore Chiang Date: Tue, 2 Jun 2026 13:55:57 +0800 Subject: [PATCH] Forward ooni_run_link_id from MAT View measurements link The MAT chart tooltip's "View measurements >" link forwards the active filters to the /search page, but the ooni_run_link_id filter was missing from the allow-list in generateSearchQuery. As a result, filtering an aggregation by an OONI Run link was lost when navigating to the measurements list. Add ooni_run_link_id to the forwarded keys. The /search page already accepts it as a supported filter, so no other change is needed. --- components/aggregation/mat/CustomTooltip.js | 1 + 1 file changed, 1 insertion(+) diff --git a/components/aggregation/mat/CustomTooltip.js b/components/aggregation/mat/CustomTooltip.js index e0fefea0..bcc0adba 100644 --- a/components/aggregation/mat/CustomTooltip.js +++ b/components/aggregation/mat/CustomTooltip.js @@ -69,6 +69,7 @@ export const generateSearchQuery = (data, query) => { 'probe_asn', 'input', 'domain', + 'ooni_run_link_id', ].reduce((q, k) => { if (k in data) q[k] = data[k] else if (query[k]) q[k] = query[k]