Fix drop on item uses target, not currentTarget

This commit is contained in:
Vincent Vandemeulebrouck 2022-01-01 14:02:27 +01:00
parent bb1d03c8a4
commit 28fa6138bc
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ export class RdDActorSheet extends ActorSheet {
/* -------------------------------------------- */
async _onDropItem(event, dragData) {
const destItemId = RdDSheetUtility.getItemId(event);
const destItemId = $(event.target)?.closest('.item').attr('data-item-id');
const dropParams = RdDSheetUtility.prepareItemDropParameters(destItemId, this.actor.id, dragData, this.objetVersConteneur);
const callSuper = await this.actor.processDropItem(dropParams);
if (callSuper) {