Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt

Use this file to discover all available pages before exploring further.

The Issue Details screen is accessible at /lo/issues/:issueId and provides tabbed management of an issue’s details, discussion thread, resolution, and linked platform tasks.

Overview

The IssueDetailPage 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

Requires LO_PERMISSIONS.DASHBOARD_VIEW (lo.dashboard.view) via the shared LOViewGuard. Editing requires lo.issues.edit.

Before you start

  • The issue identified by :issueId must exist.
  • lo.dashboard.view permission required.

Steps

1

Open an issue

Navigate to /lo/issues/:issueId or select an issue from the Issues list.
2

Review details

On the Details tab, read the issue title, priority, status, owner, and creation date.
3

Discuss

Switch to the Discuss tab to read and add comments in IssueDiscussionThread.
4

Resolve the issue

Switch to the Resolve tab and complete IssueResolutionForm to capture resolution details.
5

View linked tasks

Switch to the Tasks tab to see platform tasks linked to this issue.
6

Edit the issue

Select Edit to open IssueFormDialog with current values pre-filled.
7

Delete the issue

Select Delete and confirm in the AlertDialog to remove the issue.

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.

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.
  • src/routes/lo.tsx
  • src/cores/lo/pages/IssueDetailPage.tsx
  • src/cores/lo/hooks/useIssues.ts