We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ef96fc commit 7f7b8d7Copy full SHA for 7f7b8d7
1 file changed
apps/frontend/app/components/chat/ChatSidebar.vue
@@ -207,7 +207,8 @@ const [DefineThreadLiItem, ReuseThreadLiItem] = createReusableTemplate<{ thread:
207
<NuxtLink
208
:to="`/chat/${thread._id}`"
209
class="group/thread relative block flex items-center gap-2 overflow-hidden rounded-md p-2 px-3 text-sm [&.router-link-exact-active]:bg-primary/10 hover:bg-primary/20"
210
- @pointerdown="navigateTo(`/chat/${thread._id}`); sidebarContext.setOpenMobile(false)"
+ @mousedown="navigateTo(`/chat/${thread._id}`);"
211
+ @click="navigateTo(`/chat/${thread._id}`); sidebarContext.setOpenMobile(false)"
212
>
213
<div class="h-4 flex items-center gap-1">
214
<BranchIconButton v-if="thread.parentThread" :thread />
0 commit comments