Skip to content

Commit

Permalink
Fixed an issue where maximize icon is missing from query tool panel. #…
Browse files Browse the repository at this point in the history
  • Loading branch information
JyotiEdb committed Mar 28, 2024
1 parent 053b1e3 commit 5931162
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 />,
Expand All @@ -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'),
Expand All @@ -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 />,
Expand Down

0 comments on commit 5931162

Please sign in to comment.