We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7aa7bbc commit 3e95204Copy full SHA for 3e95204
1 file changed
src/lib/components/layout/Sidebar/ChatItem.svelte
@@ -78,10 +78,6 @@
78
let chat = null;
79
80
let mouseOver = false;
81
- let draggable = false;
82
- $: if (mouseOver) {
83
- loadChat();
84
- }
85
86
const loadChat = async () => {
87
if (!chat) {
@@ -375,7 +371,7 @@
375
371
id="sidebar-chat-group"
376
372
bind:this={itemElement}
377
373
class=" w-full {className} relative group"
378
- draggable={draggable && !confirmEdit}
374
+ draggable={!confirmEdit}
379
>
380
{#if confirmEdit}
381
<div
0 commit comments