You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-07 10:46:24 +03:00
Remove reacted with text when shortcode missing
If we don't have the shortcode for some emoji, don't show any "reacted with X" text in the reaction tooltip. Fixes https://github.com/vector-im/riot-web/issues/9786
This commit is contained in:
@@ -46,7 +46,7 @@ export default class ReactionsRowButtonTooltip extends React.PureComponent {
|
|||||||
const { name } = room.getMember(reactionEvent.getSender());
|
const { name } = room.getMember(reactionEvent.getSender());
|
||||||
senders.push(name);
|
senders.push(name);
|
||||||
}
|
}
|
||||||
const shortName = unicodeToShortcode(content) || content;
|
const shortName = unicodeToShortcode(content);
|
||||||
tooltipLabel = <div>{_t(
|
tooltipLabel = <div>{_t(
|
||||||
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>",
|
"<reactors/><reactedWith>reacted with %(shortName)s</reactedWith>",
|
||||||
{
|
{
|
||||||
@@ -59,6 +59,9 @@ export default class ReactionsRowButtonTooltip extends React.PureComponent {
|
|||||||
</div>;
|
</div>;
|
||||||
},
|
},
|
||||||
reactedWith: (sub) => {
|
reactedWith: (sub) => {
|
||||||
|
if (!shortName) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
return <div className="mx_ReactionsRowButtonTooltip_reactedWith">
|
return <div className="mx_ReactionsRowButtonTooltip_reactedWith">
|
||||||
{sub}
|
{sub}
|
||||||
</div>;
|
</div>;
|
||||||
|
|||||||
Reference in New Issue
Block a user