From 20ea3bf12ae4457ed479ba4178c2b101fc5bc8bb Mon Sep 17 00:00:00 2001 From: limina1 Date: Wed, 18 Jun 2025 13:55:18 -0400 Subject: [PATCH] Add edge color explanations to legend MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added visual indicators in the legend to explain the different colored edges: - Green edges: Person authored the event (signed-by connection) - Blue edges: Event references the person (referenced connection) These edge colors only appear when the Person Visualizer is active and help users understand the different types of connections between people and events. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- src/lib/navigator/EventNetwork/Legend.svelte | 30 ++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/lib/navigator/EventNetwork/Legend.svelte b/src/lib/navigator/EventNetwork/Legend.svelte index 63b9aaa..1aea672 100644 --- a/src/lib/navigator/EventNetwork/Legend.svelte +++ b/src/lib/navigator/EventNetwork/Legend.svelte @@ -157,6 +157,36 @@ {/if} + + + {#if showPersonNodes && personAnchors.length > 0} +
  • + + + + + Authored by person + +
  • +
  • + + + + + References person + +
  • + {/if} {/if}