Lowercase service group name before sorting it (#133718) (#133735)

(cherry picked from commit 3f38c6c8b2)

Co-authored-by: Katerina Patticha <aikaterini.patticha@elastic.co>
This commit is contained in:
Kibana Machine 2022-06-07 07:13:45 -05:00 committed by GitHub
parent f0a1d9429f
commit cb218d786a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,7 +51,7 @@ export function ServiceGroupsList() {
const sortedItems = sortBy(filteredItems, (item) =>
apmServiceGroupsSortType === 'alphabetical'
? item.groupName
? item.groupName.toLowerCase()
: item.updatedAt
);