mirror of https://github.com/vector-im/riot-web
Merge pull request #723 from matrix-org/luke/fix-e2e-input-placeholder
Fix message composer placeholderspull/21833/head
commit
0a76e0f621
|
@ -287,7 +287,7 @@ export default class MessageComposer extends React.Component {
|
||||||
);
|
);
|
||||||
|
|
||||||
const placeholderText = roomIsEncrypted ?
|
const placeholderText = roomIsEncrypted ?
|
||||||
"Send a message (unencrypted)…" : "Send a message…";
|
"Send an encrypted message…" : "Send a message (unencrypted)…";
|
||||||
|
|
||||||
controls.push(
|
controls.push(
|
||||||
<MessageComposerInput
|
<MessageComposerInput
|
||||||
|
|
Loading…
Reference in New Issue