mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
* Modifying courier to exclude filter properties that start with $ * Removing the $state property directly when building the filters
This commit is contained in:
parent
8e27db38d1
commit
8f8da94e75
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ const translateToQuery = function (filter) {
|
|||
* @returns {object}
|
||||
*/
|
||||
const cleanFilter = function (filter) {
|
||||
return _.omit(filter, ['meta']);
|
||||
return _.omit(filter, ['meta', '$state']);
|
||||
};
|
||||
|
||||
export function buildQueryFromFilters(filters, decorateQuery) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue