replace all instances of escapes/translated descriptions

This commit is contained in:
41666 2018-11-29 10:29:24 -06:00
parent 005bc44bc1
commit 088e6f2c54

View file

@ -1 +1 @@
export const msgToReal = (msg) => (msg.replace('<', '&lt;').replace('\n', '<br />')) export const msgToReal = (msg) => (msg.replace(/</g, '&lt;').replace(/\n/g, '<br />'))