job creation working

This commit is contained in:
Casey 2026-01-16 09:06:59 -06:00
parent bd9e00c6f1
commit d3818d1985
22 changed files with 591 additions and 179 deletions

View file

@ -40,8 +40,7 @@ const showCompleted = ref(false);
const statusOptions = ref([
"Open",
"Working",
"Pending",
"Review",
"Pending Review",
"Overdue",
"Completed",
"Cancelled",
@ -92,7 +91,7 @@ const tableActions = [
console.log("Setting status for row:", rowData, "to:", option);
try {
// Uncomment when API is ready
// await Api.setTaskStatus(rowData.id, option);
await Api.setTaskStatus(rowData.id, option);
// Find and update the row in the table data
const rowIndex = tableData.value.findIndex(row => row.id === rowData.id);