[pgAdmin][RM5101] debugger not showing all arguments anymore after hitting sql error while debug

2020-02-27 Thread Aditya Toshniwal
Hi Hackers, Attached is the patch to fix the issue where few of the arguments were skipped when opening arguments dialog other than the first time. The issue occurs when any of the arguments in between is an OUT arg. I've also added a "Clear All" button to the argument dialog which will clear all

[pgAdmin][RM5219] pgAdmin 4 GUI does not display properly on IE browser

2020-02-27 Thread Aditya Toshniwal
Hi Hackers, The patch fixes pgAdmin on IE. In my patch for #5133, I had made some changes in backgrid-select-all.js in vendor directory. It turns out, vendor directory is excluded from webpack compiling. I used ES6 code syntax which does not work on IE. Code changes are done to use ES5 syntax. P

[pgAdmin][RM5142]Connections are not getting closed when disconnect the server while debugging is in progress.

2020-02-27 Thread Aditya Toshniwal
Hi Hackers, Attached is the patch to cancel any transaction before closing the connections when a server is disconnected using pgAdmin UI. Currently, debugger connection is marked to termination when the server is disconnected, but it does not close because of some ongoing transaction. Please rev