From 5b438e13ccd3f9f74b8e14746555bc90a58a6370 Mon Sep 17 00:00:00 2001 From: Ganesh Jaybhay Date: Fri, 18 Oct 2019 13:41:43 +0530 Subject: [PATCH] =?UTF-8?q?Fixed=20potential=20error=C2=A0in=20the=20prope?= =?UTF-8?q?rties=20dialog=20for=20the=20Code=20tab.=20Fixes=20#4845.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/en_US/release_notes_4_15.rst | 1 + web/pgadmin/static/js/backform.pgadmin.js | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/en_US/release_notes_4_15.rst b/docs/en_US/release_notes_4_15.rst index 04bb87d5a..06e146077 100644 --- a/docs/en_US/release_notes_4_15.rst +++ b/docs/en_US/release_notes_4_15.rst @@ -17,4 +17,5 @@ Housekeeping Bug fixes ********* +| `Issue #4845 `_ - Fixed potential errorĀ in the properties dialog for the Code tab. | `Issue #4850 `_ - Fixed an issue where Datetimepicker control opens when clicking on the label. \ No newline at end of file diff --git a/web/pgadmin/static/js/backform.pgadmin.js b/web/pgadmin/static/js/backform.pgadmin.js index 407b9a9e5..a03ac7cac 100644 --- a/web/pgadmin/static/js/backform.pgadmin.js +++ b/web/pgadmin/static/js/backform.pgadmin.js @@ -689,6 +689,7 @@ define([ } var el = $((tmpls['panel'])(_.extend(o, { 'tabIndex': idx, + 'tabPanelCodeClass': o.tabPanelCodeClass ? o.tabPanelCodeClass : '', }))) .appendTo(tabContent) .removeClass('collapse').addClass('collapse');