mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fix typo that caused a layout issue with the Edit Grid.
This commit is contained in:
parent
ffb00b502a
commit
7c09a8f827
@ -379,8 +379,8 @@ define([
|
|||||||
newWin.document.title = grid_title;
|
newWin.document.title = grid_title;
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
var dashboardPanel = pgBrowser.docker.findPanels('properites');
|
var propertiesPanel = pgBrowser.docker.findPanels('properties');
|
||||||
var dataGridPanel = pgBrowser.docker.addPanel('frm_datagrid', wcDocker.DOCK.STACKED, dashboardPanel[0]);
|
var dataGridPanel = pgBrowser.docker.addPanel('frm_datagrid', wcDocker.DOCK.STACKED, propertiesPanel[0]);
|
||||||
|
|
||||||
// Set panel title and icon
|
// Set panel title and icon
|
||||||
dataGridPanel.title('<span title="'+grid_title+'">'+grid_title+'</span>');
|
dataGridPanel.title('<span title="'+grid_title+'">'+grid_title+'</span>');
|
||||||
@ -495,8 +495,8 @@ define([
|
|||||||
/* On successfully initialization find the dashboard panel,
|
/* On successfully initialization find the dashboard panel,
|
||||||
* create new panel and add it to the dashboard panel.
|
* create new panel and add it to the dashboard panel.
|
||||||
*/
|
*/
|
||||||
var dashboardPanel = pgBrowser.docker.findPanels('properties');
|
var propertiesPanel = pgBrowser.docker.findPanels('properties');
|
||||||
var queryToolPanel = pgBrowser.docker.addPanel('frm_datagrid', wcDocker.DOCK.STACKED, dashboardPanel[0]);
|
var queryToolPanel = pgBrowser.docker.addPanel('frm_datagrid', wcDocker.DOCK.STACKED, propertiesPanel[0]);
|
||||||
|
|
||||||
// Set panel title and icon
|
// Set panel title and icon
|
||||||
queryToolPanel.title('<span title="'+panel_title+'">'+panel_title+'</span>');
|
queryToolPanel.title('<span title="'+panel_title+'">'+panel_title+'</span>');
|
||||||
|
Loading…
Reference in New Issue
Block a user