kin: auto-commit after pipeline

This commit is contained in:
Gros Frumos 2026-03-17 16:00:54 +02:00
parent 028195d09c
commit 538af5b799

View file

@ -361,6 +361,7 @@ const CATEGORY_COLORS: Record<string, string> = {
const showAddTask = ref(false)
const taskForm = ref({ title: '', priority: 5, route_type: '', category: '', acceptance_criteria: '' })
const taskFormError = ref('')
const uploadWarning = ref('')
const pendingFiles = ref<File[]>([])
const fileInputRef = ref<HTMLInputElement | null>(null)
@ -512,7 +513,7 @@ async function addTask() {
}
pendingFiles.value = []
if (failedFiles.length > 0) {
console.warn('Failed to upload attachments:', failedFiles)
uploadWarning.value = `Не удалось загрузить файлы: ${failedFiles.join(', ')}. Вы можете дозагрузить их через TaskDetail.`
}
}
showAddTask.value = false