- See a live breakdown of incident types at a glance
- Browse pending incidents and click to review details
- View all relevant fields for the selected incident
- Resolve, escalate, or reassign incidents from a single screen
1. Create the workspace
Click the 🧩 icon in the left sidebar, then “Create your first Workspace”. Name it something clear: “Incident Queue” or “Support Triage”. Rename it by clicking the edit icon next to “My Workspace”.2. Add a header with context
Drag a Text component onto the canvas. Use Templating to personalize it:3. Add a distribution chart
Add a Chart component to give operators a quick overview of what’s in the queue:- Chart type: Distribution
- Collection: Issue
- Group by: category (or type)
- Filter:
status = "To Review"
4. Add the Issues Collection
Drag a Collection component onto the main canvas area. Configure it:- Collection: Issue
- Segment: “To Review” (filter:
status = "To Review") - On row click: “Select a record”
5. Build the detail panel
Create a section to the right of the issue list. Add a Text component with Templating:- Description, what happened
- Reported by, user or driver
- Created at, when it was reported
- Priority, urgency level
- Assigned to, current owner
- Drag a Field component from the sidebar’s “Data” section
- Set Source to the Issue collection (Collection 1)
- Set Field to the appropriate field
- Choose the right display widget (relative time for dates, badge for priority, etc.)
6. Add a link to the full record
Drag a Link component:- URL type: Redirect to record
- Source: Collection 1 (Issue)
7. Show related information
If incidents are linked to user accounts or trips, add a second Collection with a dynamic filter:- Collection: User (or Trip)
- Filter:
id = {{collection1.selectedRecord.user_id}}
8. Add action buttons
Drag Button components for the core actions:| Button label | Action | Purpose |
|---|---|---|
| ✓ Resolve | resolve_incident | Marks incident as resolved |
| ↑ Escalate | escalate_to_tier2 | Moves to escalation queue |
| → Reassign | reassign_incident | Sends to another back-end |
- Source: Collection 1 (Issue)
- Action: Select the corresponding action
9. Exit the builder and test
Click “Exit builder” to switch to operator view. Walk through the workflow:- Click an incident row, the detail panel should update
- Review the related user/trip information
- Click “Resolve”, the action form should open
- Submit the form, the incident should disappear from the queue
The result
Operators get a complete triage interface:- Top: Distribution chart showing the incident mix
- Left: List of pending incidents
- Right: Incident details + related context + action buttons
Common customizations
Color-code priority, Use the Status Badge widget for the priority field and maphigh → red, medium → yellow, low → green.
Add an SLA timer, Use the Relative Time widget on created_at to show how long the incident has been open. Add a warning badge for incidents older than your SLA threshold.
Show back-end notes, Add a Field component for a notes text field so back-ends can see what previous back-ends have done before acting.
Add a search box, Drag a Search component linked to the Issues collection so operators can find a specific incident by ID or keyword.