MCPcopy Create free account
hub / github.com/Tron521/codex-console-temp / showTaskStatus

Function showTaskStatus

static/js/app.js:1671–1684  ·  view source on GitHub ↗
(task)

Source from the content-addressed store, hash-verified

1669
1670// 显示任务状态
1671function showTaskStatus(task) {
1672 elements.taskStatusRow.style.display = 'grid';
1673 elements.batchProgressSection.style.display = 'none';
1674 elements.taskStatusBadge.style.display = 'inline-flex';
1675 elements.taskId.textContent = task.task_uuid.substring(0, 8) + '...';
1676 elements.taskEmail.textContent = '-';
1677 elements.taskService.textContent = '-';
1678 if (elements.taskLastChecked) {
1679 elements.taskLastChecked.textContent = '-';
1680 }
1681 if (elements.taskInventory) {
1682 elements.taskInventory.textContent = '-';
1683 }
1684}
1685
1686// 更新任务状态
1687function updateTaskStatus(status) {

Callers 2

handleSingleRegistrationFunction · 0.85
restoreActiveTaskFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected