Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add denominations tree #5960

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add missing semicolon
  • Loading branch information
arch0345 committed Dec 30, 2021
commit eb420c50a1398729bca3c6f0cc13df38c6640c22
2 changes: 1 addition & 1 deletion scripts/build_index.js
Original file line number Diff line number Diff line change
@@ -580,7 +580,7 @@ function mergeItems() {

function setLanguageTags(tags, code) {
if (tags.name) tags[`name:${code}`] = tags.name;
if (tags.denomination) tags[`name:${code}`] = tags.denomination
if (tags.denomination) tags[`name:${code}`] = tags.denomination;
if (tags.brand) tags[`brand:${code}`] = tags.brand;
if (tags.operator) tags[`operator:${code}`] = tags.operator;
if (tags.network) tags[`network:${code}`] = tags.network;