fix: reaction tweaks

This commit is contained in:
Alejandro Gomez
2023-01-15 01:41:46 +01:00
parent 6ac44786af
commit 615fc9fcfa
2 changed files with 9 additions and 4 deletions

View File

@ -40,8 +40,8 @@ export default function NoteReaction(props) {
function tagLine() {
switch (ev.Kind) {
case EventKind.Reaction: return <small>Reacted with {mapReaction(ev.Content)}</small>;
case EventKind.Repost: return <small> Reposted</small>
case EventKind.Reaction: return <small className="reaction-text">reacted with {mapReaction(ev.Content)}</small>;
case EventKind.Repost: return <small className="reaction-text">reposted</small>
}
}