mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-05 12:16:53 +02:00
Fix bad ternary statement in autocomplete user pill insertions (#7977)
This commit is contained in:
parent
a58b1e9d79
commit
881307e97c
@ -651,10 +651,10 @@ export class PartCreator {
|
||||
userId: string,
|
||||
): [UserPillPart, PlainPart] {
|
||||
const pill = this.userPill(displayName, userId);
|
||||
const postfix = this.plain(
|
||||
insertTrailingCharacter &&
|
||||
(SettingsStore.getValue("MessageComposerInput.insertTrailingComma") ? ": " : " "),
|
||||
);
|
||||
if (!SettingsStore.getValue("MessageComposerInput.insertTrailingComma")) {
|
||||
insertTrailingCharacter = false;
|
||||
}
|
||||
const postfix = this.plain(insertTrailingCharacter ? ": " : " ");
|
||||
return [pill, postfix];
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user