kin: auto-commit after pipeline
This commit is contained in:
parent
248934d5d7
commit
939a30a3de
6 changed files with 796 additions and 3 deletions
|
|
@ -6,6 +6,7 @@ import Badge from '../components/Badge.vue'
|
|||
import Modal from '../components/Modal.vue'
|
||||
import AttachmentUploader from '../components/AttachmentUploader.vue'
|
||||
import AttachmentList from '../components/AttachmentList.vue'
|
||||
import LiveConsole from '../components/LiveConsole.vue'
|
||||
|
||||
const props = defineProps<{ id: string }>()
|
||||
const route = useRoute()
|
||||
|
|
@ -468,6 +469,14 @@ async function saveEdit() {
|
|||
No pipeline steps yet.
|
||||
</div>
|
||||
|
||||
<!-- Live Console -->
|
||||
<LiveConsole
|
||||
v-if="task.pipeline_id"
|
||||
:pipeline-id="task.pipeline_id"
|
||||
:pipeline-status="task.status"
|
||||
class="mb-6"
|
||||
/>
|
||||
|
||||
<!-- Selected step output -->
|
||||
<div v-if="selectedStep" class="mb-6">
|
||||
<h2 class="text-sm font-semibold text-gray-300 mb-2">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue