Correct styles on admin panels and enter triggers submission
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 1m34s

This commit is contained in:
2026-03-10 12:41:45 +00:00
parent 7991c80176
commit 14cacec1f5
7 changed files with 19 additions and 14 deletions

View File

@@ -44,8 +44,8 @@ async function submit() {
<input type="file" accept="image/jpeg,image/png,image/gif,image/webp" multiple @change="onFileChange" />
<Button @click="submit">Upload</Button>
<div v-for="r in results" :key="r.name">
<span>{{ r.name }}: </span>
<span :class="r.ok ? '' : 'text-red-500'">{{ r.status }}</span>
<span class="text-primary">{{ r.name }}: </span>
<span :class="r.ok ? 'text-secondary' : 'text-red-500'">{{ r.status }}</span>
</div>
</div>
</template>