[Security Solution] [Detections] Disables sorting ip ranges in value list modal (#210922)

## Summary

Disables sorting ip range values in a value list until this bug is
fixed in elasticsearch.

related: https://github.com/elastic/elasticsearch/issues/122358
This commit is contained in:
Devin W. Hurley 2025-02-13 08:37:37 -05:00 committed by GitHub
parent 79f1144974
commit 18ef744a9c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -39,7 +39,7 @@ export const ListItemTable = ({
name: COLUMN_VALUE,
render: (value, item) =>
canWriteIndex ? <InlineEditListItemValue listItem={item} key={value} /> : value,
sortable: list.type !== 'text',
sortable: list.type !== 'text' && list.type !== 'ip_range',
},
{
field: LIST_ITEM_FIELDS.updatedAt,