diff --git a/web/src/components/MetadataPanel.tsx b/web/src/components/MetadataPanel.tsx index d246391..a83d11f 100644 --- a/web/src/components/MetadataPanel.tsx +++ b/web/src/components/MetadataPanel.tsx @@ -1,3 +1,4 @@ +import Link from "next/link"; import type { NoteDetail } from "@/lib/types"; export function MetadataPanel({ note }: { note: NoteDetail }) { @@ -7,13 +8,17 @@ export function MetadataPanel({ note }: { note: NoteDetail }) {
Owner: {note.metadata.owner}
Source: {note.metadata.source}
-
Review state: {note.metadata.reviewState}
+ + Review state: {note.metadata.reviewState} +
Tasks: {note.metadata.taskCount}
Artifacts: {note.metadata.artifactCount}
{note.tags.map((tag) => ( - #{tag} + + #{tag} + ))}