Lowercase service group name before sorting it (#133718)

This commit is contained in:
Katerina Patticha 2022-06-07 13:03:33 +02:00 committed by GitHub
parent 7e7ff8239c
commit 3f38c6c8b2
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
);