Skip to content
Snippets Groups Projects
Commit 0397700b authored by insert's avatar insert
Browse files

Try reverting change to typing indicator.

parent 65314866
Branches
Tags
No related merge requests found
......@@ -81,15 +81,15 @@ export const TypingIndicator = observer(({ typing }: Props) => {
if (users.length >= 5) {
text = <Text id="app.main.channel.typing.several" />;
} else if (users.length > 1) {
const userlist = [...users].map((x) => <Username user={x} />);
const userlist = [...users].map((x) => x.username);
const user = userlist.pop();
for (let i = 0; i < userlist.length - 1; i++) {
userlist.splice(i * 2 + 1, 0, <>, </>);
userlist.splice(i * 2 + 1, 0, ", ");
}
text = (
<TextReact
<Text
id="app.main.channel.typing.multiple"
fields={{
user,
......@@ -99,7 +99,7 @@ export const TypingIndicator = observer(({ typing }: Props) => {
);
} else {
text = (
<TextReact
<Text
id="app.main.channel.typing.single"
fields={{ user: <Username user={users[0]} /> }}
/>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment