Only render jobs run if there is at least one
All checks were successful
Push image to registry / build-image (push) Successful in 4m10s

This commit is contained in:
2025-03-16 17:37:39 +01:00
parent 4368aae6c4
commit cfbae6ddbf

View File

@ -10,6 +10,7 @@ defineProps<{
</script>
<template>
<div v-if="job.job_runs.length > 0">
<h2>Ancien jobs</h2>
<ScrollArea class="min-h-[300px] max-h-[20vh] overflow-auto pr-2">
<Accordion type="multiple" collapsible>
@ -25,4 +26,5 @@ defineProps<{
/>
</Accordion>
</ScrollArea>
</div>
</template>