Skip to content

Commit 51d23b2

Browse files
committed
Do not show 'None' if there isn't a language associated with the repo
1 parent d282ba5 commit 51d23b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/project_list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ <h2>All Projects</h2>
5151
{% else %}
5252
<td></td>
5353
{% endif %}
54-
<td>{% if repo.description %}{{ repo.language }}{% endif %}</td>
54+
<td>{% if repo.language %}{{ repo.language }}{% endif %}</td>
5555
{% if repo.license %}
5656
<td><a href="{{ repo.license.url }}">{{ repo.license.name }}</a></td>
5757
{% else %}

0 commit comments

Comments
 (0)