Skip to content

Commit 2281854

Browse files
lj1990111kagol
authored andcommitted
fix(transfer): fix codecheck
1 parent 03973c8 commit 2281854

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/devui-vue/devui/transfer/src/composables/use-transfer-body.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export const transferBodyState = (props: TTransferBodyProps, ctx: SetupContext)
104104
if (!dragRef.value) {
105105
return -1;
106106
}
107-
const { top, bottom, height } = (event.target as HTMLElement).getBoundingClientRect(); // dragRef.value.getBoundingClientRect();
107+
const { top, bottom, height } = (event.target as HTMLElement).getBoundingClientRect();
108108
const des = Math.max(height * 0.25, 2);
109109

110110
if (clientY <= top + des) {

0 commit comments

Comments
 (0)