We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b5b69c commit 3effa8bCopy full SHA for 3effa8b
x-pack/plugins/security_solution/server/endpoint/routes/resolver/utils/pagination.ts
@@ -61,7 +61,7 @@ export class PaginationBuilder {
61
const lastResult = results[results.length - 1];
62
const cursor = {
63
timestamp: lastResult['@timestamp'],
64
- eventID: String(eventId(lastResult)),
+ eventID: eventId(lastResult) === undefined ? '' : String(eventId(lastResult)),
65
};
66
return PaginationBuilder.urlEncodeCursor(cursor);
67
}
0 commit comments