The Issue Details screen is accessible 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.
/lo/issues/:issueId and provides tabbed management of an issue’s details, discussion thread, resolution, and linked platform tasks.
Overview
TheIssueDetailPage reads :issueId from URL params and fetches the issue via useIssue. The page shows the issue title, a IssuePriorityBadge, an IssueStatusBadge, the assigned owner avatar and name, and the creation date. Four tabs — Details, Discuss, Resolve, and Tasks — are URL-synced via useTabUrlState. IssueDiscussionThread provides a comment thread, IssueResolutionForm captures resolution details, and SourceTasksPanel shows linked platform tasks. The Tasks tab badge shows a task count. Edit and Delete buttons are in the header; deletion uses AlertDialog confirmation.
Who it’s for
RequiresLO_PERMISSIONS.DASHBOARD_VIEW (lo.dashboard.view) via the shared LOViewGuard. Editing requires lo.issues.edit.
Before you start
- The issue identified by
:issueIdmust exist. lo.dashboard.viewpermission required.
Steps
Review details
On the Details tab, read the issue title, priority, status, owner, and creation date.
Resolve the issue
Switch to the Resolve tab and complete
IssueResolutionForm to capture resolution details.Key concepts
- Issue statuses:
open,discussing,resolved. - Tab URL sync: active tab (
details,discuss,resolve,tasks) is stored in the URL. - IssueResolutionForm: captures resolution information when closing an issue.
Related
Leadership
Leadership core overview.
Governance & parity
Documentation coverage and governance.
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/lo.tsx
- src/cores/lo/pages/IssueDetailPage.tsx
- src/cores/lo/hooks/useIssues.ts