Some checks failed
Push image to registry / build-image (push) Failing after 3m47s
25 lines
535 B
Vue
25 lines
535 B
Vue
<script setup lang="ts">
|
|
import Separator from "@/Components/ui/separator/Separator.vue";
|
|
import { JobRunArtifact } from "@/types/Jobs/job";
|
|
|
|
defineProps<{
|
|
jobRun: JobRunArtifact;
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<ul>
|
|
<li v-for="artifact in jobRun.artifacts" :key="artifact.id">
|
|
<p>{{ artifact.name }}</p>
|
|
<p class="italic">{{ artifact.content }}</p>
|
|
</li>
|
|
</ul>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
ul {
|
|
list-style-type: circle;
|
|
padding-left: 1rem;
|
|
}
|
|
</style>
|