Skip to content

Commit

Permalink
Fix parsing of extra long dict repo names
Browse files Browse the repository at this point in the history
  • Loading branch information
snomos committed Oct 25, 2023
1 parent c3c1af7 commit 45590d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/js/langtable.js
Original file line number Diff line number Diff line change
Expand Up @@ -8469,7 +8469,7 @@ function reponame2dictname(reponame) {
return code2langname[parts[1]] + ' - ' + code2langname[parts[2]]
}

return code2langname[parts[1]] + ' (' + parts.slice(3).join('-') + ')'
return code2langname[parts[1]] + ' - ' + code2langname[parts[2]] + ' (' + parts.slice(4).join('-') + ')'
}

function addDictRepoTable(repos, mainFilter, filters) {
Expand Down

0 comments on commit 45590d6

Please sign in to comment.