mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[SLO] Fixing a missed variable in the discover filter (#178502)
## Summary This PR is a follow up to #178260, when we added the "Total events" filter we forgot to update the value's text representation of the `customTotalFilter`.
This commit is contained in:
parent
9b27d61bf9
commit
834371ebb2
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ function createDiscoverLocator(
|
|||
alias: i18n.translate('xpack.observability.slo.sloDetails.totalFilterLabel', {
|
||||
defaultMessage: 'Total events',
|
||||
}),
|
||||
value: JSON.stringify(customBadFilter),
|
||||
value: JSON.stringify(customTotalFilter),
|
||||
index: indexId,
|
||||
},
|
||||
query: customTotalFilter as Record<string, any>,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue