Light mode support
Some checks failed
linter / quality (push) Failing after 6m3s
tests / ci (8.4) (push) Successful in 5m40s
tests / ci (8.5) (push) Successful in 5m1s

This commit is contained in:
2026-03-22 17:14:23 +01:00
parent 88a932391b
commit 9d4b02fab5
3 changed files with 16 additions and 9 deletions

View File

@@ -46,7 +46,7 @@ const rowBgDark = computed(() => {
v-for="(iteration, index) in props.iterations"
v-bind:key="index"
:class="{
'bg-gray-900': rowBgDark[index],
'bg-gray-300 dark:bg-gray-900': rowBgDark[index],
}"
>
<td>{{ iteration.epoch }}</td>
@@ -60,7 +60,7 @@ const rowBgDark = computed(() => {
<td>{{ iteration.error.toFixed(2) }}</td>
</tr>
<tr v-if="props.trainingEnded" class="bg-red-900 text-center">
<tr v-if="props.trainingEnded" class="bg-red-400 dark:bg-red-900 text-center">
<td colspan="100%">
<strong>Entraînement terminé :</strong>
{{ props.trainingEndReason }}