Fix bad ternary statement in autocomplete user pill insertions (#7977)
This commit is contained in:
parent
a58b1e9d79
commit
881307e97c
1 changed files with 4 additions and 4 deletions
|
@ -651,10 +651,10 @@ export class PartCreator {
|
||||||
userId: string,
|
userId: string,
|
||||||
): [UserPillPart, PlainPart] {
|
): [UserPillPart, PlainPart] {
|
||||||
const pill = this.userPill(displayName, userId);
|
const pill = this.userPill(displayName, userId);
|
||||||
const postfix = this.plain(
|
if (!SettingsStore.getValue("MessageComposerInput.insertTrailingComma")) {
|
||||||
insertTrailingCharacter &&
|
insertTrailingCharacter = false;
|
||||||
(SettingsStore.getValue("MessageComposerInput.insertTrailingComma") ? ": " : " "),
|
}
|
||||||
);
|
const postfix = this.plain(insertTrailingCharacter ? ": " : " ");
|
||||||
return [pill, postfix];
|
return [pill, postfix];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue