This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: edge titles wider (60%), ASCII icons instead of unicode CJK

Unicode arrows/symbols (U+2295, U+26D4, etc.) render as CJK in some
fonts. Replaced with ASCII equivalents. Edge title max-width 200px
was too short — now 60% of container.

👾 Generated with [Letta Code](https://letta.com)

Co-Authored-By: Letta Code <noreply@letta.com>

author
nandi
co-author
Letta Code
date (May 14, 2026, 6:29 AM UTC) commit 95e7f0e8 parent 9bcc046e
+18 -18
+17 -17
src/frontend/app.ts
··· 426 426 function connectionTypeIcon(t: string): string { 427 427 const label = connectionTypeLabel(t); 428 428 const icons: Record<string, string> = { 429 - "leads to": "\u2192", 430 - "cites": "\u2190", 431 - "related": "\u2194", 432 - "relates": "\u2194", 433 - "inspired": "\u2728", 434 - "opposes": "\u26D4", 435 - "contradicts": "\u26D4", 436 - "extends": "\u21D2", 437 - "forks": "\u21C4", 438 - "annotates": "\u270E", 439 - "supplement": "\u2295", 440 - "supplements": "\u2295", 441 - "supports": "\u2713", 442 - "addresses": "\u25C6", 443 - "explainer": "\u2139", 444 - "helpful": "\u2606", 445 - "contains": "\u25B6", 429 + "leads to": "->", 430 + "cites": "<-", 431 + "related": "<->", 432 + "relates": "<->", 433 + "inspired": "*", 434 + "opposes": "X", 435 + "contradicts": "X", 436 + "extends": "=>", 437 + "forks": "<=>", 438 + "annotates": "~", 439 + "supplement": "+", 440 + "supplements": "+", 441 + "supports": "v", 442 + "addresses": "*", 443 + "explainer": "?", 444 + "helpful": "+", 445 + "contains": ">", 446 446 }; 447 447 return icons[label] || "\u2194"; 448 448 }
+1 -1
src/landing-page.ts
··· 1009 1009 overflow: hidden; 1010 1010 text-overflow: ellipsis; 1011 1011 white-space: nowrap; 1012 - max-width: 200px; 1012 + max-width: 60%; 1013 1013 } 1014 1014 .strata-edge-type { 1015 1015 font-size: 0.6875rem;