Add space on eventActor render

This commit is contained in:
Xevion
2023-01-15 02:28:49 -06:00
parent 0fa1cfaabd
commit b9b55b3735

View File

@@ -16,7 +16,7 @@ const Events: FunctionComponent<EventsProps> = ({data}) => {
<span
title={eventDate.toString()}>{eventDate.toString()}
</span>
{eventActor != null ? `(by ${eventActor})` : null}
{eventActor != null ? ` (by ${eventActor})` : null}
</dd>
</Fragment>
})}