feat(FN-3196): sort done column by recency, add collapsible agent error dis

This merge consolidates several improvements across the dashboard, engine, and CLI: mobile nav now extends into iOS safe area, done columns sort by recency with merge-active state preserved, agent views gain collapsible error displays, per-project HeartbeatMonitor isolation is fixed for multi-projec

Fusion-Task-Id: FN-3196
This commit is contained in:
Fusion
2026-05-04 07:34:25 -07:00
committed by gsxdsm
parent c4363f1a4f
commit 07cdf80317
2 changed files with 2 additions and 2 deletions

View File

@@ -2037,7 +2037,7 @@ function MemoryTab({
<div className="config-field">
<label htmlFor="agent-memory-file-select">Memory Files</label>
<span className="config-hint config-hint--block">
Full OpenClaw memory files at <code>.fusion/agent-memory/{agent.id}/</code> (MEMORY.md, DREAMS.md, and daily notes).
Full OpenClaw memory files at <code>agent/{agent.name || agent.id}/memory/</code> (MEMORY.md, DREAMS.md, and daily notes).
</span>
<select

View File

@@ -113,7 +113,7 @@ function countTotalInsights(categories: ParsedInsightCategory[]): number {
function getBackendDisplayName(backend: string): string {
switch (backend) {
case "file":
return "File (.fusion/memory/)";
return "File (.fusion/memory/, agent/<agent-name>/memory/)";
case "readonly":
return "Read-Only";
case "qmd":