Skip to content

Commit 8a0eae2

Browse files
Fixed an issue where drag and drop function with no parameters does not work. #8613
1 parent 18f47a5 commit 8a0eae2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

docs/en_US/release_notes_9_3.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,6 @@ Bug fixes
3535
| `Issue #8497 <https://github.com/pgadmin-org/pgadmin4/issues/8497>`_ - Fixed an issue where the scroll position in the Object Explorer was not retained when switching workspaces.
3636
| `Issue #8556 <https://github.com/pgadmin-org/pgadmin4/issues/8556>`_ - Ensure that graph data is updated even when the Dashboard tab is inactive.
3737
| `Issue #8572 <https://github.com/pgadmin-org/pgadmin4/issues/8572>`_ - Fixed an issue where Ctrl/Cmd+A in cell editor would select all rows.
38-
| `Issue #8630 <https://github.com/pgadmin-org/pgadmin4/issues/8630>`_ - Fixed an issue where filtering on a view caused an error.
38+
| `Issue #8613 <https://github.com/pgadmin-org/pgadmin4/issues/8613>`_ - Fixed an issue where drag and drop function with no parameters does not work.
39+
| `Issue #8630 <https://github.com/pgadmin-org/pgadmin4/issues/8630>`_ - Fixed an issue where filtering on a view caused an error.
40+
| `Issue #8632 <https://github.com/pgadmin-org/pgadmin4/issues/8632>`_ - Fixed an issue where the query tool went blank when converting history dates to the appropriate locale format.

web/pgadmin/static/js/tree/ObjectExplorer.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ function postTreeReady(b) {
7979
dropVal = dropVal + ')';
8080
} else {
8181
dropVal = dropVal + '()';
82-
curPos.from = curPos.to = dropVal.length + 1;
82+
curPos.from = curPos.to = dropVal.length;
8383
}
8484

8585
return {

0 commit comments

Comments
 (0)