Remove white space characters before the horizontal ellipsis (#10130)
This commit is contained in:
parent
f14414eacd
commit
e57f6f0257
2 changed files with 3 additions and 4 deletions
|
@ -138,9 +138,9 @@ export default class MKeyVerificationRequest extends React.Component<IProps> {
|
|||
} else if (request.cancelled) {
|
||||
stateLabel = this.cancelledLabel(request.cancellingUserId);
|
||||
} else if (request.accepting) {
|
||||
stateLabel = _t("Accepting …");
|
||||
stateLabel = _t("Accepting…");
|
||||
} else if (request.declining) {
|
||||
stateLabel = _t("Declining …");
|
||||
stateLabel = _t("Declining…");
|
||||
}
|
||||
stateNode = <div className="mx_cryptoEvent_state">{stateLabel}</div>;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue