From e1acdae89c8cf0b70f346cd4d69eeefe28740e6a Mon Sep 17 00:00:00 2001 From: Nar Saynorath Date: Wed, 15 Apr 2026 14:53:53 -0400 Subject: [PATCH] feat(tracemetrics): Disable filter actions on equations/results --- static/app/views/discover/table/cellAction.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/static/app/views/discover/table/cellAction.tsx b/static/app/views/discover/table/cellAction.tsx index 481ef92763d174..05637018c5b6de 100644 --- a/static/app/views/discover/table/cellAction.tsx +++ b/static/app/views/discover/table/cellAction.tsx @@ -12,6 +12,7 @@ import {defined} from 'sentry/utils'; import type {TableDataRow} from 'sentry/utils/discover/discoverQuery'; import { fieldAlignment, + isEquation, isEquationAlias, isRelativeSpanOperationBreakdownField, } from 'sentry/utils/discover/fields'; @@ -193,7 +194,7 @@ function makeCellActions({ } // Do not render context menu buttons for the equation fields until we can query on them - if (isEquationAlias(column.name)) { + if (isEquationAlias(column.name) || isEquation(column.key as string)) { return null; }