Skip to content

Commit b069fac

Browse files
committed
draggable.grid.header.toolbar.SortZone: createDragProxy() => adjust the proxy height #6374
1 parent c083186 commit b069fac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/draggable/grid/header/toolbar/SortZone.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class SortZone extends BaseSortZone {
6666

6767
config.cls = ['neo-grid-wrapper', me.owner.getTheme()];
6868

69-
config.style.height = rect.height + 'px';
69+
config.style.height = `${rect.height - 2}px`; // minus border-bottom & border-top
7070

7171
cells.forEach((cell, index) => {
7272
row = VdomUtil.clone({cls: gridRows[index].cls, cn: [cell]}); // clone to remove ids

0 commit comments

Comments
 (0)