mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Lowercase service group name before sorting it (#133718)
This commit is contained in:
parent
7e7ff8239c
commit
3f38c6c8b2
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ export function ServiceGroupsList() {
|
|||
|
||||
const sortedItems = sortBy(filteredItems, (item) =>
|
||||
apmServiceGroupsSortType === 'alphabetical'
|
||||
? item.groupName
|
||||
? item.groupName.toLowerCase()
|
||||
: item.updatedAt
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue