Fixed an issue where maximize icon is missing from query tool panel. #7218

pull/7287/head^2
JyotiEdb 2024-03-28 11:53:56 +05:30 committed by GitHub
parent 053b1e3d69
commit 5931162556
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

@ -248,6 +248,7 @@ export default function QueryToolComponent({params, pgWindow, pgAdmin, selectedN
mode: 'horizontal',
children: [
{
maximizable: true,
tabs: [
LayoutDocker.getPanel({id: PANELS.QUERY, title: gettext('Query'), content: <Query />}),
LayoutDocker.getPanel({id: PANELS.HISTORY, title: gettext('Query History'), content: <QueryHistory />,
@ -256,6 +257,7 @@ export default function QueryToolComponent({params, pgWindow, pgAdmin, selectedN
},
{
size: 75,
maximizable: true,
tabs: [
LayoutDocker.getPanel({
id: PANELS.SCRATCH, title: gettext('Scratch Pad'),
@ -275,6 +277,7 @@ export default function QueryToolComponent({params, pgWindow, pgAdmin, selectedN
mode: 'horizontal',
children: [
{
maximizable: true,
tabs: [
LayoutDocker.getPanel({
id: PANELS.DATA_OUTPUT, title: gettext('Data Output'), content: <ResultSet />,