mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-26 06:40:53 +02:00
Sort average response times
This commit is contained in:
parent
eeec505182
commit
a8f2700fe6
1 changed files with 4 additions and 0 deletions
|
|
@ -19,6 +19,10 @@ function getAverageResponseTimeData(indexerStats) {
|
|||
};
|
||||
});
|
||||
|
||||
data.sort((a, b) => {
|
||||
return b.value - a.value;
|
||||
});
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue