Escape single quotes in composer placeholder

Signed-off-by: Robin Townsend <robintown@tcakoi.dev>
pull/21833/head
Robin Townsend 2020-07-22 00:44:01 +00:00
parent bcc6c96030
commit 951570a97f
1 changed files with 3 additions and 1 deletions

View File

@ -219,7 +219,9 @@ export default class BasicMessageEditor extends React.Component<IProps, IState>
};
private showPlaceholder() {
this.editorRef.current.style.setProperty("--placeholder", `'${this.props.placeholder}'`);
// escape single quotes
const placeholder = this.props.placeholder.replace(/'/g, '\\\'');
this.editorRef.current.style.setProperty("--placeholder", `'${placeholder}'`);
this.editorRef.current.classList.add("mx_BasicMessageComposer_inputEmpty");
}