preserves whitespaces and newlines in message

pull/124/head
ajaythapliyal 2 years ago
parent 5f70bf286a
commit 4bc1a87fcf

@ -48,7 +48,7 @@ export default function Conversation() {
<div
ref={inputRef}
contentEditable
className={`border-000000 overflow-x-hidden; max-h-24 min-h-[2.6rem] w-full overflow-y-auto rounded-xl border bg-white p-2 pr-9 opacity-100 focus:border-2 focus:outline-none`}
className={`border-000000 overflow-x-hidden; max-h-24 min-h-[2.6rem] w-full overflow-y-auto whitespace-pre-wrap rounded-xl border bg-white p-2 pr-9 opacity-100 focus:border-2 focus:outline-none`}
onKeyDown={(e) => {
if (e.key === 'Enter' && !e.shiftKey) {
e.preventDefault();

@ -33,7 +33,7 @@ const ConversationBubble = forwardRef<
{type === 'ERROR' && (
<img src={Alert} alt="alert" className="mr-2 inline" />
)}
<span>{message}</span>
<p className="whitespace-pre-wrap break-all">{message}</p>
</div>
</div>
);

Loading…
Cancel
Save