We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Could we just do something like this?
diff --git a/static/app/views/performance/table.tsx b/static/app/views/performance/table.tsx index 15fed2e06b4..57e26bf2457 100644 --- a/static/app/views/performance/table.tsx +++ b/static/app/views/performance/table.tsx @@ -283,6 +283,10 @@ class _Table extends Component<Props, State> { } const {isInDomainView, view} = this.props.domainViewFilters ?? {}; + const query = summaryView.generateQueryStringObject(); + if (dataRow.hasOwnProperty('transaction.op')) { + query.query = `( transaction.op:${dataRow['transaction.op'].toString()} )`; + } const target = isUnparameterizedRow ? createUnnamedTransactionsDiscoverTarget({ organization, @@ -291,7 +295,7 @@ class _Table extends Component<Props, State> { : transactionSummaryRouteWithQuery({ orgSlug: organization.slug, transaction: String(dataRow.transaction) || '', - query: summaryView.generateQueryStringObject(), + query, projectID, view: (isInDomainView && view) || undefined, });
The text was updated successfully, but these errors were encountered:
Routing to @getsentry/product-owners-insights for triage ⏲️
Sorry, something went wrong.
DominikB2014
No branches or pull requests
Could we just do something like this?
The text was updated successfully, but these errors were encountered: