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 Issues screen is accessible at /lo/issues and provides a list of organizational issues with open/discussing/resolved status counts, filtering by status and priority, and a search field.

Overview

The IssuesPage loads issues via useIssues(organization?.id, filters). Status counters display open, discussing, and resolved counts. The includeResolved filter defaults to false, hiding resolved issues. Filters include status and priority selectors; a search input updates the search filter. Issues are rendered as IssueCard components. The ?action=new query parameter (from keyboard shortcut Cmd/Ctrl+I on the dashboard) opens IssueFormDialog automatically. The ”+” button also opens the dialog.

Who it’s for

Requires LO_PERMISSIONS.DASHBOARD_VIEW (lo.dashboard.view) via the shared LOViewGuard. Creating issues uses lo.issues.create; editing uses lo.issues.edit.

Before you start

  • lo.dashboard.view permission required.
  • An active organization context with a valid organization.id is required.

Steps

1

Navigate to Issues

Go to /lo/issues. The page loads open and discussing issues.
2

Review status counts

Open, Discussing, and Resolved counts are shown at the top.
3

Filter issues

Use the status and priority dropdowns or the search input to narrow results.
4

Show resolved issues

Enable the include-resolved toggle (when present in filters) to see resolved issues.
5

Open an issue

Select an IssueCard to navigate to /lo/issues/:issueId for full detail.
6

Create an issue

Select ”+” or navigate to /lo/issues?action=new to open IssueFormDialog.

Key concepts

  • Issue statuses: open, discussing, resolved.
  • Priority values: low, medium, high.
  • ?action=new: query parameter that auto-opens the create dialog (cleared after use).

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