mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[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:
parent
79f1144974
commit
18ef744a9c
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue