Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 | 139x 37x 62x 62x 62x | export const sortByMetricName = (metricData: { name: string }[]) => {
metricData.sort((a, b) => {
const aLower = a.name.toLowerCase()
const bLower = b.name.toLowerCase()
return aLower > bLower ? 1 : bLower > aLower ? -1 : 0
})
}
|