Merge pull request #1823 from fry69/architect-hot-fix

This commit is contained in:
paul-gauthier 2024-09-29 09:33:55 -07:00 committed by GitHub
commit b73c518eb2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -404,7 +404,7 @@ this model with aider.
{% for item in group.items %}
<tr class="{% if group_class == 1 %}shaded{% endif %}">
<td>{{ item.model }}</td>
<td>{{ item.editor_model | default: "<b>Baseline<b>" }}</td>
<td>{% if item.editor_model %}{{ item.editor_model }}{% else %}<b>Baseline</b>{% endif %}</td>
<td style="text-align: center;">{{ item.editor_edit_format | default: item.edit_format }}</td>
<td style="text-align: right;">{{ item.pass_rate_2 }}%</td>
</tr>
@ -412,6 +412,4 @@ this model with aider.
{% endfor %}
</tbody>
</table>
</div>
</div>