From 5889eceba4399062d83a219d59e8b6151ca2a917 Mon Sep 17 00:00:00 2001 From: Debanjum Singh Solanky Date: Mon, 3 Jul 2023 23:21:39 -0700 Subject: [PATCH] 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 --- src/interface/obsidian/src/chat_modal.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/interface/obsidian/src/chat_modal.ts b/src/interface/obsidian/src/chat_modal.ts index acca8813..871a8feb 100644 --- a/src/interface/obsidian/src/chat_modal.ts +++ b/src/interface/obsidian/src/chat_modal.ts @@ -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;