Skip to content

Commit c68d6f3

Browse files
author
Volodymyr Zaets
committed
MAGETWO-52418: Drag and drop on Customizable opions poblem
- fix codestyle
1 parent bacf970 commit c68d6f3

File tree

1 file changed

+1
-2
lines changed
  • app/code/Magento/Ui/view/base/web/js/dynamic-rows

1 file changed

+1
-2
lines changed

app/code/Magento/Ui/view/base/web/js/dynamic-rows/dnd.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,7 @@ define([
131131
drEl.instance = recordNode = this.processingStyles(recordNode, elem);
132132
drEl.instanceCtx = this.getRecord(originRecord[0]);
133133
drEl.eventMousedownY = isTouchDevice ? event.originalEvent.touches[0].pageY : event.pageY;
134-
drEl.minYpos =
135-
$table.offset().top - originRecord.offset().top + $table.find('thead').outerHeight();
134+
drEl.minYpos = $table.offset().top - originRecord.offset().top + $table.find('thead').outerHeight();
136135
drEl.maxYpos = drEl.minYpos + $table.find('tbody').outerHeight() - originRecord.outerHeight();
137136
$tableWrapper.append(recordNode);
138137

0 commit comments

Comments
 (0)