Sort average response times

This commit is contained in:
TheCatLady
2021-06-15 15:40:44 -04:00
committed by Qstick
parent eeec505182
commit a8f2700fe6

View File

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