adds entries.list.id field in the searchable event filters fields list

This commit is contained in:
David Sanchez Soler 2021-07-28 12:34:15 +02:00
parent dccdb621ce
commit 45a66fd966

View file

@ -24,10 +24,11 @@ export const EVENT_FILTER_LIST = {
};
export const SEARCHABLE_FIELDS: Readonly<string[]> = [
`name`,
`entries.value`,
`entries.entries.value`,
`comments.comment`,
'name',
'entries.value',
'entries.list.id',
'entries.entries.value',
'comments.comment',
];
export { ENDPOINT_EVENT_FILTERS_LIST_ID, EXCEPTION_LIST_URL, EXCEPTION_LIST_ITEM_URL };