We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39b25a5 commit e1acdaeCopy full SHA for e1acdae
static/app/views/discover/table/cellAction.tsx
@@ -12,6 +12,7 @@ import {defined} from 'sentry/utils';
12
import type {TableDataRow} from 'sentry/utils/discover/discoverQuery';
13
import {
14
fieldAlignment,
15
+ isEquation,
16
isEquationAlias,
17
isRelativeSpanOperationBreakdownField,
18
} from 'sentry/utils/discover/fields';
@@ -193,7 +194,7 @@ function makeCellActions({
193
194
}
195
196
// Do not render context menu buttons for the equation fields until we can query on them
- if (isEquationAlias(column.name)) {
197
+ if (isEquationAlias(column.name) || isEquation(column.key as string)) {
198
return null;
199
200
0 commit comments