Skip to content

Commit

Permalink
Fixed language filter on download page
Browse files Browse the repository at this point in the history
  • Loading branch information
rgaudin committed Apr 29, 2024
1 parent a11fb76 commit 0d10091
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/download.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"
data-target="{{ package.url }}"
data-category="{{ package.category }}"
data-langs="{% if package.langs %}{% for lang in package.langs %}{{ lang }} {% endfor %}{% endif %}"
data-langs="{% if package.langs %}{% for lang in package.langs %}{{ lang.alpha_3 }} {% endfor %}{% endif %}"
data-name="{{ package.title }}"
data-size="{% if package.download and package.download.size %}{{ package.download.size }}{% else %}0{% endif %}">

Expand Down

0 comments on commit 0d10091

Please sign in to comment.