Skip to content

Commit

Permalink
allow null for filterQuery (#62310) (#62411)
Browse files Browse the repository at this point in the history
  • Loading branch information
angorayc authored Apr 3, 2020
1 parent a651b23 commit ddc1a1b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,9 @@ export const kqlQuery = Joi.object({
kuery: Joi.object({
kind: allowEmptyString,
expression: allowEmptyString,
}),
}).allow(null),
serializedQuery: allowEmptyString,
}),
}).allow(null),
});
export const pinnedEventIds = Joi.array()
.items(allowEmptyString)
Expand Down

0 comments on commit ddc1a1b

Please sign in to comment.