diff --git a/_locales/en/messages.json b/_locales/en/messages.json
index c23feed5e..3f0173299 100644
--- a/_locales/en/messages.json
+++ b/_locales/en/messages.json
@@ -463,6 +463,6 @@
"reactionPopupTwo": "$name$ & $name2$",
"reactionPopupThree": "$name$, $name2$ & $name3$",
"reactionPopupMany": "$name$, $name2$, $name3$ &",
- "reactionListCountSingular": "And $otherSingular$ has reacted to this message",
- "reactionListCountPlural": "And $otherPlural$ have reacted to this message"
+ "reactionListCountSingular": "And $otherSingular$ has reacted $emoji$ to this message",
+ "reactionListCountPlural": "And $otherPlural$ have reacted $emoji$ to this message"
}
diff --git a/ts/components/dialog/ReactListModal.tsx b/ts/components/dialog/ReactListModal.tsx
index 1d73740e4..3fb5bdccc 100644
--- a/ts/components/dialog/ReactListModal.tsx
+++ b/ts/components/dialog/ReactListModal.tsx
@@ -17,6 +17,7 @@ import { nativeEmojiData } from '../../util/emoji';
import { sendMessageReaction, SOGSReactorsFetchCount } from '../../util/reactions';
import { Avatar, AvatarSize } from '../avatar/Avatar';
import { Flex } from '../basic/Flex';
+import { SessionHtmlRenderer } from '../basic/SessionHTMLRenderer';
import { ContactName } from '../conversation/ContactName';
import { MessageReactions } from '../conversation/message/message-content/MessageReactions';
import { SessionIconButton } from '../icon';
@@ -163,18 +164,28 @@ const StyledCountText = styled.p`
color: var(--color-text-subtle);
text-align: center;
margin: 16px auto 0;
+
+ span {
+ color: var(--color-text);
+ }
`;
-const CountText = ({ count }: { count: number }) => {
+const CountText = ({ count, emoji }: { count: number; emoji: string }) => {
return (
- {count > SOGSReactorsFetchCount + 1
- ? window.i18n('reactionListCountPlural', [
- window.i18n('otherPlural', [String(count - SOGSReactorsFetchCount)]),
- ])
- : window.i18n('reactionListCountSingular', [
- window.i18n('otherSingular', [String(count - SOGSReactorsFetchCount)]),
- ])}
+ SOGSReactorsFetchCount + 1
+ ? window.i18n('reactionListCountPlural', [
+ window.i18n('otherPlural', [String(count - SOGSReactorsFetchCount)]),
+ emoji,
+ ])
+ : window.i18n('reactionListCountSingular', [
+ window.i18n('otherSingular', [String(count - SOGSReactorsFetchCount)]),
+ emoji,
+ ])
+ }
+ />
);
};
@@ -355,7 +366,9 @@ export const ReactListModal = (props: Props): ReactElement => {
handleClose={handleClose}
/>
)}
- {isPublic && count && count > SOGSReactorsFetchCount && }
+ {isPublic && currentReact && count && count > SOGSReactorsFetchCount && (
+
+ )}
)}