fix: grid布局下dropLocation蓝色标识应当出现在左右, close #112522

This commit is contained in:
游鹿 2021-12-03 11:47:49 +08:00
parent 3d8b31f121
commit 74717ee5b2

View File

@ -78,6 +78,9 @@ export function isRowContainer(container: Element | Text, win?: Window) {
return true;
}
}
if (/grid$/.test(display)) {
return true;
}
return false;
}