add space before 'Reposted'

This commit is contained in:
Alejandro Gomez 2023-01-13 17:24:20 +01:00
parent 8bffd3bd4c
commit fa3088a331
No known key found for this signature in database
GPG Key ID: 4DF39E566658C817

View File

@ -39,7 +39,7 @@ export default function NoteReaction(props) {
function tagLine() { function tagLine() {
switch (ev.Kind) { switch (ev.Kind) {
case EventKind.Reaction: return <small>Reacted with {mapReaction(ev.Content)}</small>; case EventKind.Reaction: return <small>Reacted with {mapReaction(ev.Content)}</small>;
case EventKind.Repost: return <small>Reposted</small> case EventKind.Repost: return <small> Reposted</small>
} }
} }