mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[Maps] only allow sorting on numeric fields for tracks (#96877)
This commit is contained in:
parent
f4bc0d61a1
commit
c218ba8397
1 changed files with 6 additions and 1 deletions
|
@ -64,7 +64,12 @@ export function GeoLineForm(props: Props) {
|
|||
onChange={onSortFieldChange}
|
||||
fields={props.indexPattern.fields.filter((field) => {
|
||||
const isSplitField = props.splitField ? field.name === props.splitField : false;
|
||||
return !isSplitField && field.sortable && !indexPatterns.isNestedField(field);
|
||||
return (
|
||||
!isSplitField &&
|
||||
field.sortable &&
|
||||
!indexPatterns.isNestedField(field) &&
|
||||
['number', 'date'].includes(field.type)
|
||||
);
|
||||
})}
|
||||
isClearable={false}
|
||||
/>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue