Fix grammar of read receipt text (#744)
'other' should be plural in this context.
This commit is contained in:
parent
214d49f1d9
commit
af69955801
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ function getUsersActionJsx(roomId, userIds, actionStr) {
|
||||||
|
|
||||||
const othersCount = userIds.length - MAX_VISIBLE_COUNT;
|
const othersCount = userIds.length - MAX_VISIBLE_COUNT;
|
||||||
// eslint-disable-next-line react/jsx-one-expression-per-line
|
// eslint-disable-next-line react/jsx-one-expression-per-line
|
||||||
return <>{u1Jsx}, {u2Jsx}, {u3Jsx} and {othersCount} other are {actionStr}</>;
|
return <>{u1Jsx}, {u2Jsx}, {u3Jsx} and {othersCount} others are {actionStr}</>;
|
||||||
}
|
}
|
||||||
|
|
||||||
function parseTimelineChange(mEvent) {
|
function parseTimelineChange(mEvent) {
|
||||||
|
|
Loading…
Reference in a new issue