- {marker.annotations.map((a) => (
-
-
-
-
- {ANNOTATION_LABELS[a.category] || 'Note'} · {formatEU(a.date)}{a.time ? ` at ${a.time}` : ''}
-
-
{a.text}
+ {/* Annotation tags */}
+ {annotationMarkers.length > 0 && (
+
+
Annotations:
+ {annotationMarkers.map((marker) => {
+ const primary = marker.annotations[0]
+ const color = ANNOTATION_COLORS[primary.category] || ANNOTATION_COLORS.other
+ const count = marker.annotations.length
+ return (
+
-
-
- )
- })}
-
- )}
-
- {/* Live indicator */}
- {lastUpdatedAt != null && (
-
-
-
-
-
-
- Live · {formatUpdatedAgo(lastUpdatedAt)}
+
+ )
+ })}
-
- )}
+ )}
+
+ {/* Live indicator */}
+ {lastUpdatedAt != null && (
+
+
+
+
+
+
+ Live · {formatUpdatedAgo(lastUpdatedAt)}
+
+
+ )}
+
{/* ─── Right-click Context Menu ──────────────────────────────── */}
{contextMenu && (