web/timeline: make reply placeholder 2 lines long

This commit is contained in:
Tulir Asokan 2024-10-14 23:04:04 +03:00
parent 73d8c5c6bb
commit c4c5563f9a

View file

@ -39,7 +39,7 @@ export const ReplyIDBody = ({ room, eventID }: ReplyIDBodyProps) => {
// This caches whether the event is requested or not, so it doesn't need to be wrapped in an effect. // This caches whether the event is requested or not, so it doesn't need to be wrapped in an effect.
use(ClientContext)!.requestEvent(room, eventID) use(ClientContext)!.requestEvent(room, eventID)
return <blockquote className="reply-body"> return <blockquote className="reply-body">
Reply to {eventID} Reply to unknown event<br/><code>{eventID}</code>
</blockquote> </blockquote>
} }
return <ReplyBody room={room} event={event}/> return <ReplyBody room={room} event={event}/>