Fixed small issue with displaying number of benchmarks in a test

This commit is contained in:
Gregory Ballantine 2025-06-10 11:38:11 -04:00
parent e42f453161
commit fad6899683

View File

@ -20,7 +20,7 @@
<tr>
<td><a href="{{ url_for('test.view', { test_id: t.id }) }}">{{ t.title }}</a></td>
<td>{{ t.component.name }}</td>
<td>{{ t.benchmarks() | length }}</td>
<td>{{ t.benchmarks().get() | length }}</td>
<td>{{ t.updated_at | date("F jS \\a\\t g:ia") }}</td>
</tr>
{% endfor %}