Skip to content

Commit

Permalink
allow null for filterQuery (#62310)
Browse files Browse the repository at this point in the history
  • Loading branch information
angorayc committed Apr 3, 2020
1 parent 4973ddd commit 7db1b5a
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 7db1b5a

Please sign in to comment.