mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-02 21:19:12 +00: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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user