Conversation
|
Pinging @elastic/uptime (Team:uptime) |
|
Pinging @elastic/apm-ui (Team:apm) |
| const newLocation = { | ||
| ...history.location, | ||
| search: fromQuery({ | ||
| ...toQuery(history.location.search), | ||
| transactionType: selectedTransactionType, | ||
| }), | ||
| }; | ||
| history.push(newLocation); |
There was a problem hiding this comment.
We have a helper for making this a little easier:
| const newLocation = { | |
| ...history.location, | |
| search: fromQuery({ | |
| ...toQuery(history.location.search), | |
| transactionType: selectedTransactionType, | |
| }), | |
| }; | |
| history.push(newLocation); | |
| urlHelpers.push(history, { transactionType: selectedTransactionType }); |
There was a problem hiding this comment.
Cool. I copied this from the ui filters so this is much nicer.
sorenlouv
left a comment
There was a problem hiding this comment.
lgtm! Should we attempt to remove the projections in a follow-up PR?
Yes. I updated some of the items on #84526 so that should get done. |
justinkambic
left a comment
There was a problem hiding this comment.
Code changes seem fine, smoke test was fine. LGTM
💚 Build SucceededMetrics [docs]Module Count
Async chunks
History
To update your PR or re-run it, just comment with: |
* Start moving some stuff * Move some stuff around * more * Transactions label * some snake casing * i18n fix * Remove unused ui filters endpoints * Updates to select * remove projections * Use urlHelpers.push * License change
* master: (244 commits) [maps] Top hits per entity--change to title to use recent, minor edits (elastic#89254) [DOCS] Update installation details (elastic#90354) RFC for automatically generated typescript API documentation for every plugins public services, types, and functionality (elastic#86704) Elastic Maps Server config is `host` not `hostname` (elastic#90234) Use doc link services in index pattern management (elastic#89937) [Fleet] Managed Agent Policy (elastic#88688) [Workplace Search] Fix Source Settings bug (elastic#90242) [Enterprise Search] Refactor MockRouter test helper to not store payload (elastic#90206) Use doc link service in more Stack Monitoring pages (elastic#89050) [App Search] Relevance Tuning logic - actions and selectors only, no listeners (elastic#89313) Remove UI filters from UI (elastic#89793) Use newfeed.service config for all newsfeeds (elastic#90252) skip flaky suite (elastic#85086) Add readme to geo containment alert covering test alert setup (elastic#89625) [APM] Enabling yesterday option when 24 hours is selected (elastic#90017) Test user for maps tests under import geoJSON tests (elastic#86015) [Lens] Hide column in table (elastic#88680) [Security Solution][Detections] Reduce detection engine reliance on _source (elastic#89371) [Discover] Minor cleanup (elastic#90260) [Search Session][Management] Rename "cancel" button and delete "Reload" button (elastic#90015) ...
EuiPageScreenshot of new transaction type select and placement of correlations button:
References #84526.