From 6032692de00ca0bc581dc6af895b7f7bfd4cdf72 Mon Sep 17 00:00:00 2001 From: Aditya Toshniwal Date: Fri, 27 Sep 2019 14:32:52 +0530 Subject: [PATCH] Unable to open Query tool on Internet Explorer. Remove extra comma in the function argument while starting the query tool. Other browsers had no problems, but it is an issue on Internet explorer. Fixes #4769 --- docs/en_US/release_notes_4_14.rst | 1 + web/pgadmin/tools/datagrid/templates/datagrid/index.html | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/en_US/release_notes_4_14.rst b/docs/en_US/release_notes_4_14.rst index 65ba67350..e3ec233cc 100644 --- a/docs/en_US/release_notes_4_14.rst +++ b/docs/en_US/release_notes_4_14.rst @@ -24,4 +24,5 @@ Bug fixes | `Issue #4755 `_ - Ensure that pgAdmin should work behind reverse proxy if the inbuilt server is used as it is. | `Issue #4756 `_ - Fix issue where pgAdmin does not load completely if loaded in an iframe. | `Issue #4768 `_ - Ensure pgAdmin should work behind reverse proxy on a non standard port. +| `Issue #4769 `_ - Fix query tool open issue on Internet Explorer. | `Issue #4777 `_ - Fix issue where query history is not visible in the query history tab. \ No newline at end of file diff --git a/web/pgadmin/tools/datagrid/templates/datagrid/index.html b/web/pgadmin/tools/datagrid/templates/datagrid/index.html index 3eb02e57e..2ce4c4691 100644 --- a/web/pgadmin/tools/datagrid/templates/datagrid/index.html +++ b/web/pgadmin/tools/datagrid/templates/datagrid/index.html @@ -440,7 +440,7 @@ sqlEditorController.start( {{ uniqueId }}, {{ url_params|safe}}, - '{{ layout|safe }}', + '{{ layout|safe }}' ); }); {% endblock %}