[pgAdmin][RM3915] Executing a specific query will break keyboard shorcuts for Query Tool
Aditya Toshniwal <[email protected]>
| Newsgroups | gmane.comp.db.postgresql.pgadmin.devel |
|---|---|
| Message-ID | <CAM9w-_kk8-5eLXLgCnM19UipK8wzVTrMPFM_xYqCeAQMdrKYHQ@mail.gmail.com> |
Hi Hackers, Attached is the patch to fix the issue where delayed exceptions raised by functions breaks few shortcuts of query tool. Kindly review. -- Thanks and Regards, Aditya Toshniwal Sr. Software Engineer | EnterpriseDB India | Pune "Don't Complain about Heat, Plant a TREE"
RM3915.patch
(application/octet-stream, 573 B)
diff --git a/web/pgadmin/static/js/sqleditor/execute_query.js b/web/pgadmin/static/js/sqleditor/execute_query.js
index b8baa410d..a87700148 100644
--- a/web/pgadmin/static/js/sqleditor/execute_query.js
+++ b/web/pgadmin/static/js/sqleditor/execute_query.js
@@ -164,6 +164,7 @@ class ExecuteQuery {
self.sqlServerObject.resetQueryHistoryObject(self.sqlServerObject);
self.loadingScreen.hide();
+ self.sqlServerObject.setIsQueryRunning(false);
if (self.sqlServerObject.is_query_tool) {
self.enableSQLEditorButtons();
}