Sort average response times

pull/225/head
TheCatLady 3 years ago committed by Qstick
parent eeec505182
commit a8f2700fe6

@ -19,6 +19,10 @@ function getAverageResponseTimeData(indexerStats) {
};
});
data.sort((a, b) => {
return b.value - a.value;
});
return data;
}

Loading…
Cancel
Save