Merge pull request #298 from arc53/feature/hisotry

fix the styling in a box
pull/285/head
Alex 10 months ago committed by GitHub
commit 1b7dc8a509
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -71,6 +71,12 @@ export default function Conversation() {
return responseView;
};
const handlePaste = (e: React.ClipboardEvent) => {
e.preventDefault();
const text = e.clipboardData.getData('text/plain');
document.execCommand('insertText', false, text);
};
return (
<div className="flex justify-center p-4">
{queries.length > 0 && (
@ -98,6 +104,7 @@ export default function Conversation() {
<div
ref={inputRef}
contentEditable
onPaste={handlePaste}
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 py-2 pl-4 pr-9 leading-7 opacity-100 focus:outline-none`}
onKeyDown={(e) => {
if (e.key === 'Enter' && !e.shiftKey) {

Loading…
Cancel
Save