mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
1) Preserve the settings set by the user in the import/export data dialog. Fixes #7428
2) Fixed the JSON editor issue of hiding the first record. Fixes #7520
This commit is contained in:
committed by
Akshay Joshi
parent
9dde195af4
commit
8f2bda2309
@@ -131,7 +131,7 @@ function setEditorPosition(cellEle, editorEle) {
|
||||
let cellRect = cellEle.getBoundingClientRect();
|
||||
let position = {
|
||||
left: cellRect.left,
|
||||
top: cellRect.top - editorEle.offsetHeight + 12,
|
||||
top: Math.max(cellRect.top - editorEle.offsetHeight + 12, 0)
|
||||
};
|
||||
|
||||
if ((position.left + editorEle.offsetWidth + 10) > gridEle.offsetWidth) {
|
||||
|
||||
Reference in New Issue
Block a user