segeeslice / Meetify-UI

This is the React-driven UI for the Meetify program
GNU General Public License v3.0
2 stars 1 forks source link

Allow newlines in chat messages #33

Closed segeeslice closed 3 years ago

segeeslice commented 3 years ago

Previously, when sending newlines, they were not captured when sending and displaying messages. This was due to both the server and the front-end implementation.

Now, the back-end escapes any newline characters to \n (from this main repo PR, which the front-end re-converts to newline characters for display in the app (also enabled by a slight CSS change).

Not necessarily dependent on the main repo PR, but we should probably merge them together anyway.

Closes #29