From 74d84cb2f22600b6246343e9ea606cf0db7517f0 Mon Sep 17 00:00:00 2001 From: polwex Date: Wed, 19 Nov 2025 05:47:30 +0700 Subject: Big GUI improvements on Nostr rendering and fetching --- gui/src/components/post/Header.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'gui/src/components/post/Header.tsx') diff --git a/gui/src/components/post/Header.tsx b/gui/src/components/post/Header.tsx index 5898eba..21c4f6c 100644 --- a/gui/src/components/post/Header.tsx +++ b/gui/src/components/post/Header.tsx @@ -13,13 +13,16 @@ function Header(props: PostProps) { function openThread(e: React.MouseEvent) { e.stopPropagation(); const sel = window.getSelection()?.toString(); - if (!sel) navigate(`/t/${poast.host}/${poast.id}`); + const id = "urbit" in props.user ? poast.id : poast.hash; + if (!sel) navigate(`/t/${poast.host}/${id}`); } const { poast } = props; const name = profile ? ( profile.name + ) : "urbit" in props.user ? ( +

{props.user.urbit}

) : ( -

{poast.author}

+

{props.user.nostr}

); return (
-- cgit v1.2.3