make event list summary a list item

pull/21833/head
Germain Souquet 2021-06-07 12:17:29 +01:00
parent a6ddffe74c
commit 6693c39709
1 changed files with 2 additions and 2 deletions

View File

@ -63,9 +63,9 @@ const EventListSummary: React.FC<IProps> = ({
// If we are only given few events then just pass them through // If we are only given few events then just pass them through
if (events.length < threshold) { if (events.length < threshold) {
return ( return (
<div className="mx_EventListSummary" data-scroll-tokens={eventIds}> <li className="mx_EventListSummary" data-scroll-tokens={eventIds}>
{ children } { children }
</div> </li>
); );
} }