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); };