kin: auto-commit after pipeline
This commit is contained in:
parent
028195d09c
commit
538af5b799
1 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue