Skip to content

Commit

Permalink
Using --- for unknowns breaks numeric sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
dianaclarke committed Jul 15, 2021
1 parent 128f600 commit 775b112
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions conbench/templates/compare-list.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@
{% if c.contender is not none and c.baseline is not none %}
<td>{{ c.contender_z_score }}</td>
{% else %}
<td>---</td>
<td></td>
{% endif %}

{% if c.contender is not none and c.baseline is not none %}
<td>{{ c.change }}</td>
{% else %}
<td>---</td>
<td></td>
{% endif %}

<td>{{ c.language }}</td>
Expand Down Expand Up @@ -114,13 +114,13 @@
</td>

{% if c.baseline is none %}
<td>---</td>
<td></td>
{% else %}
<td>{{ c.baseline }}</td>
{% endif %}

{% if c.contender is none %}
<td>---</td>
<td></td>
{% else %}
<td>{{ c.contender }}</td>
{% endif %}
Expand Down

0 comments on commit 775b112

Please sign in to comment.