From 694958b21cf3968fce6b6a65e1a1b716e8abe3c3 Mon Sep 17 00:00:00 2001 From: Ahmed Awan Date: Fri, 15 Mar 2024 17:59:50 -0500 Subject: [PATCH] make whole `ContentItem` draggable --- client/src/components/History/Content/ContentItem.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/client/src/components/History/Content/ContentItem.vue b/client/src/components/History/Content/ContentItem.vue index dc7022d3a824..11ecbf1df642 100644 --- a/client/src/components/History/Content/ContentItem.vue +++ b/client/src/components/History/Content/ContentItem.vue @@ -317,9 +317,12 @@ function unexpandedClick(event: Event) { :data-state="dataState" tabindex="0" role="button" + draggable + @dragstart="onDragStart" + @dragend="onDragEnd" @keydown="onKeyDown"> -
+