diff --git a/src/components/Post.tsx b/src/components/Post.tsx index 0f1b496..181969c 100644 --- a/src/components/Post.tsx +++ b/src/components/Post.tsx @@ -21,6 +21,7 @@ const Post: Component = (props) => { const [showOverflow, setShowOverflow] = createSignal(); const createdAt = () => formatDate(props.createdAt); + const createdAtFull = () => props.createdAt.toLocaleString(); const { profile: author } = useProfile(() => ({ pubkey: props.authorPubkey, @@ -76,6 +77,7 @@ const Post: Component = (props) => { ev.preventDefault(); props.onShowEvent?.(); }} + title={createdAtFull()} > {createdAt()}