fix(avocet): use startsWith for error class in ft-log (consistent with benchmark log)

This commit is contained in:
pyr0ball 2026-03-15 16:14:47 -07:00
parent 95eb238add
commit 74ba9103cd

View file

@ -181,7 +181,7 @@
v-for="(line, i) in ftLog"
:key="i"
class="log-line"
:class="{ 'log-error': line.startsWith('ERROR') || line.includes('ERROR') }"
:class="{ 'log-error': line.startsWith('ERROR') || line.startsWith('[error]') }"
>{{ line }}</div>
</div>
<p v-if="ftError" class="run-error">{{ ftError }}</p>