зеркало из https://github.com/mozilla/usecounters.git
Sort Firefox versions numerically
Fixes Bug 1765573
This commit is contained in:
Родитель
050f5457bf
Коммит
442c4589d2
|
@ -477,7 +477,7 @@ function initUI() {
|
|||
// Fill version selector.
|
||||
let select = $("#select_version");
|
||||
let allVersions = [... (new Set(versions.map(v => parseInt(v[1])))).values()]
|
||||
.sort()
|
||||
.sort((a, b) => a - b) // Sort numerically
|
||||
.reverse();
|
||||
for (var version of allVersions) {
|
||||
select.append("<option value=\""+version+"\" >"+version+"</option>");
|
||||
|
|
Загрузка…
Ссылка в новой задаче