Added jobRuns on the job page
Some checks failed
Push image to registry / build-image (push) Failing after 3m47s

This commit is contained in:
2025-03-15 17:44:30 +01:00
parent ad10dcaa0f
commit 070235e011
17 changed files with 330 additions and 18 deletions

View File

@ -1,6 +1,7 @@
<script setup lang="ts">
import JobForm from '../Components/Layout/Job/JobForm.vue'
import JobCard from '../Components/Layout/Job/JobCard.vue'
import JobRuns from '../Components/Layout/Job/JobRuns/JobRuns.vue';
import { Job } from "@/types/Jobs/job";
import { Head } from "@inertiajs/vue3";
@ -16,4 +17,6 @@ defineProps<{
<JobCard :job="job" />
<JobForm :job="job" :error="error" />
<JobRuns :job="job" />
</template>