From 4f056cc9d3379be734477e1bb7169b2ab997ddfd Mon Sep 17 00:00:00 2001 From: Raktima <110812506+raktima-opensignlabs@users.noreply.github.com> Date: Fri, 22 Mar 2024 18:06:18 +0530 Subject: [PATCH] Update RecipientList.js --- apps/OpenSign/src/components/pdf/RecipientList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/OpenSign/src/components/pdf/RecipientList.js b/apps/OpenSign/src/components/pdf/RecipientList.js index 08643b388..e608da1f8 100644 --- a/apps/OpenSign/src/components/pdf/RecipientList.js +++ b/apps/OpenSign/src/components/pdf/RecipientList.js @@ -44,7 +44,7 @@ const RecipientList = (props) => { //handle drag start const handleDragStart = (e, id) => { - // `e.dataTransfer.getData('text/plain')`is used to set the data to be transferred during a drag operation. + // `e.dataTransfer.setData('text/plain')`is used to set the data to be transferred during a drag operation. // The first argument specifies the type of data being set, and the second argument is the actual data you want to transfer. e.dataTransfer.setData("text/plain", id); };