mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-27 17:35:07 +01:00
Make text selectable in Khoj chat modal on Obsidian
Previously the text in the Khoj chat modal couldn't be copied as it was not selectable Resolves #206
This commit is contained in:
parent
89354def9b
commit
5889eceba4
1 changed files with 3 additions and 0 deletions
|
@ -98,6 +98,9 @@ export class KhojChatModal extends Modal {
|
|||
text: `${message}`
|
||||
})
|
||||
|
||||
// Remove user-select: none property to make text selectable
|
||||
chat_message_el.style.userSelect = "text";
|
||||
|
||||
// Scroll to bottom after inserting chat messages
|
||||
this.modalEl.scrollTop = this.modalEl.scrollHeight;
|
||||
|
||||
|
|
Loading…
Reference in a new issue