From b81f1bc9716dcb5d949366a9b1f68706441fdcb5 Mon Sep 17 00:00:00 2001 From: Pranav Date: Tue, 3 Jun 2025 13:39:18 -0500 Subject: [PATCH] fix: Reset conversation sidebar when copilot is open (#11657) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Both the Copilot and the conversation sidebar were open at the same time, which shouldn’t be possible. --- .../dashboard/components-next/copilot/CopilotLauncher.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/app/javascript/dashboard/components-next/copilot/CopilotLauncher.vue b/app/javascript/dashboard/components-next/copilot/CopilotLauncher.vue index f947cce67..c0766f382 100644 --- a/app/javascript/dashboard/components-next/copilot/CopilotLauncher.vue +++ b/app/javascript/dashboard/components-next/copilot/CopilotLauncher.vue @@ -42,6 +42,7 @@ const showCopilotLauncher = computed(() => { const toggleSidebar = () => { updateUISettings({ is_copilot_panel_open: !uiSettings.value.is_copilot_panel_open, + is_contact_sidebar_open: false, }); };