fix task table select

This commit is contained in:
Casey 2026-01-09 05:48:12 -06:00
parent 9803f0718c
commit 37a405a1f2
2 changed files with 2 additions and 2 deletions

View file

@ -76,7 +76,7 @@ def get_job_task_table_data(filters={}, sortings={}, page=1, page_size=10):
tableRows = []
for task in tasks:
tableRow = {}
tableRow["name"] = task["name"]
tableRow["id"] = task["name"]
tableRow["subject"] = task["subject"]
tableRow["address"] = task.get("custom_property", "")
tableRow["status"] = task.get("status", "")