Don't try to show unset display name
In the ReadReceiptMarker title, show the display name only when it is not the same as the user ID.
This commit is contained in:
parent
7e1913ef3c
commit
3d4feac75b
2 changed files with 17 additions and 6 deletions
|
@ -185,13 +185,23 @@ module.exports = React.createClass({
|
||||||
|
|
||||||
let title;
|
let title;
|
||||||
if (this.props.timestamp) {
|
if (this.props.timestamp) {
|
||||||
|
const dateString = formatDate(new Date(this.props.timestamp), this.props.showTwelveHour);
|
||||||
|
if (this.props.member.userId === this.props.member.rawDisplayName) {
|
||||||
|
title = _t(
|
||||||
|
"Seen by %(userName)s at %(dateTime)s",
|
||||||
|
{userName: this.props.member.userId,
|
||||||
|
dateTime: dateString},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
else {
|
||||||
title = _t(
|
title = _t(
|
||||||
"Seen by %(displayName)s (%(userName)s) at %(dateTime)s",
|
"Seen by %(displayName)s (%(userName)s) at %(dateTime)s",
|
||||||
{displayName: this.props.member.rawDisplayName,
|
{displayName: this.props.member.rawDisplayName,
|
||||||
userName: this.props.member.userId,
|
userName: this.props.member.userId,
|
||||||
dateTime: formatDate(new Date(this.props.timestamp), this.props.showTwelveHour)},
|
dateTime: dateString},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Velociraptor
|
<Velociraptor
|
||||||
|
|
|
@ -389,6 +389,7 @@
|
||||||
"Offline": "Offline",
|
"Offline": "Offline",
|
||||||
"Unknown": "Unknown",
|
"Unknown": "Unknown",
|
||||||
"Replying": "Replying",
|
"Replying": "Replying",
|
||||||
|
"Seen by %(userName)s at %(dateTime)s": "Seen by %(userName)s at %(dateTime)s",
|
||||||
"Seen by %(displayName)s (%(userName)s) at %(dateTime)s": "Seen by %(displayName)s (%(userName)s) at %(dateTime)s",
|
"Seen by %(displayName)s (%(userName)s) at %(dateTime)s": "Seen by %(displayName)s (%(userName)s) at %(dateTime)s",
|
||||||
"No rooms to show": "No rooms to show",
|
"No rooms to show": "No rooms to show",
|
||||||
"Unnamed room": "Unnamed room",
|
"Unnamed room": "Unnamed room",
|
||||||
|
|
Loading…
Reference in a new issue