diff --git a/web/src/app/(app)/dashboard/page.tsx b/web/src/app/(app)/dashboard/page.tsx index 1e9f7e7..62af04d 100644 --- a/web/src/app/(app)/dashboard/page.tsx +++ b/web/src/app/(app)/dashboard/page.tsx @@ -131,58 +131,58 @@ export default function DashboardPage() { } > -
+
{summaryCards.map((card) => ( - -
{card.label}
-
{card.value}
+ +
{card.label}
+
{card.value}
))}
-
-
-
Saved views
-
+
+
+
Saved views
+
{savedViews.map((view) => ( -
+
{view.name} {view.scope}
-
{view.description}
-
- {view.query} - {view.resultCount} results +
{view.description}
+
+ {view.query} + {view.resultCount} results
))}
-
-
Operator workflows
-
+
+
Operator workflows
+
{operatorWorkflows.map((workflow) => ( -
+
{workflow.name} {workflow.status}
-
Owner: {workflow.owner}
-
- Queue: {workflow.queueCount} - SLA: {workflow.sla} +
Owner: {workflow.owner}
+
+ Queue: {workflow.queueCount} + SLA: {workflow.sla}
))} @@ -190,22 +190,22 @@ export default function DashboardPage() {
-
-
Recent note activity
- {error ?
{error}
: null} -
+
+
Recent note activity
+ {error ?
{error}
: null} +
{recentNotes.map((note) => ( -
-
+
+
{note.title} - {note.updatedBy} + {note.updatedBy}
- + {note.excerpt} -
+
{note.tags.map((tag) => ( #{tag} diff --git a/web/src/app/(app)/notes/[noteId]/page.tsx b/web/src/app/(app)/notes/[noteId]/page.tsx index aa43308..a4df35e 100644 --- a/web/src/app/(app)/notes/[noteId]/page.tsx +++ b/web/src/app/(app)/notes/[noteId]/page.tsx @@ -148,7 +148,7 @@ export default function NoteDetailPage() { description="Editable note surface with metadata, linked context, tasks, artifacts, and review history." actions={
Loading
} > -
+
{error ?? "Loading note…"}
@@ -160,7 +160,7 @@ export default function NoteDetailPage() { title={note.title} description="Editable note surface with metadata, linked context, tasks, artifacts, and review history." actions={ -
+
{isSaving ? (
Saving
) : ( @@ -182,11 +182,11 @@ export default function NoteDetailPage() {
} > -
+
-