Remove incorrectly typed tags

This commit is contained in:
MrOtherGuy
2020-06-05 09:48:56 +03:00
parent e40da9c14e
commit a13ff2d6a6
3 changed files with 5 additions and 5 deletions

View File

@@ -133,7 +133,7 @@ function createCategories(){
ret[++i]=item;
ns[i]=0;
}else{
ns[i] += (item === "legacy" ? 0 : 1);
ns[i] += (item === "legacy" ? -1 : 1);
}
}
let map = ret.map((a,i)=>({name:a,value:ns[i]}))