The Task Details page provides a full view of a single task, enabling status transitions, edits, dependency management, discussion threads, and time tracking. It is reached atDocumentation Index
Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
Use this file to discover all available pages before exploring further.
/tasks/:taskId.
Overview
The page resolves the:taskId URL parameter and fetches the task via useTask. It displays:
- Header: task title, status badge, priority badge, source type badge, and a dropdown with Edit, Complete/Pause/Resume, and Delete actions.
- Metadata section: assignee avatar, due date, created date, linked entity.
- Checklist: task sub-items (if any).
- Dependencies: editable list via
TaskDependencyEditor. - Discussion:
TaskDiscussionThreadfor comments. - Time tracking:
TaskTimeSectionfor logging time entries.
useEntityBreadcrumb.
Who it’s for
No explicit permission gate on this route. Access is limited by organization scoping; users can only see tasks belonging to their organization.Before you start
- You need the task’s ID (typically navigated to from
/tasksor a linked entity). - Editing or deleting requires appropriate permissions on the task entity.
Steps
- Click a task from the Tasks list (
/tasks) or a linked entity to navigate to/tasks/:taskId. - Review task details including status, priority, due date, and assignee.
- Use the dropdown (three-dot menu) to Edit, Complete, Pause/Resume, or Delete the task.
- Add comments in the Discussion section.
- Add or remove task dependencies as needed.
- Log time entries in the Time tracking section.
Key concepts
Source type — indicates where the task originated (manual, automation, module trigger). Dependencies — tasks that must be completed before or after this task.Related
Platform Foundation
Platform Foundation overview.
Governance & parity
This page documents shipped product behavior. It is not medical, legal, or
billing advice. Verify against your organization’s policies and applicable
regulations before using it for clinical, compliance, or billing decisions.
Protected health information (PHI) shown in the product is governed by your
tenant’s access controls and is never exposed in this documentation.
Documentation sources
Documentation sources
- src/routes/platform.tsx
- src/platform/tasks/pages/TaskDetailPage.tsx
- src/platform/tasks/hooks/useTask.ts
- src/platform/tasks/components/TaskDependencyEditor.tsx