mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed the export image issue where relation lines are over the nodes. Fixes #6531
This commit is contained in:
committed by
Akshay Joshi
parent
c7fd1ae535
commit
8bf1c96065
@@ -19,6 +19,7 @@ Housekeeping
|
|||||||
Bug fixes
|
Bug fixes
|
||||||
*********
|
*********
|
||||||
|
|
||||||
|
| `Issue #6531 <https://redmine.postgresql.org/issues/6531>`_ - Fixed the export image issue where relation lines are over the nodes.
|
||||||
| `Issue #6544 <https://redmine.postgresql.org/issues/6544>`_ - Fixed width limitation issue in PSQL tool window.
|
| `Issue #6544 <https://redmine.postgresql.org/issues/6544>`_ - Fixed width limitation issue in PSQL tool window.
|
||||||
| `Issue #6564 <https://redmine.postgresql.org/issues/6564>`_ - Fixed an issue where columns with sequences get altered unnecessarily with a schema diff tool.
|
| `Issue #6564 <https://redmine.postgresql.org/issues/6564>`_ - Fixed an issue where columns with sequences get altered unnecessarily with a schema diff tool.
|
||||||
| `Issue #6572 <https://redmine.postgresql.org/issues/6572>`_ - Partially fixes the data output panel display issue.
|
| `Issue #6572 <https://redmine.postgresql.org/issues/6572>`_ - Partially fixes the data output panel display issue.
|
||||||
|
|||||||
@@ -593,7 +593,7 @@ export default class BodyWidget extends React.Component {
|
|||||||
let wrap = document.createElement('div');
|
let wrap = document.createElement('div');
|
||||||
wrap.setAttribute('style', svgEle.getAttribute('style'));
|
wrap.setAttribute('style', svgEle.getAttribute('style'));
|
||||||
svgEle.setAttribute('style', null);
|
svgEle.setAttribute('style', null);
|
||||||
svgEle.parentNode.appendChild(wrap);
|
svgEle.parentNode.insertBefore(wrap, svgEle);
|
||||||
wrap.appendChild(svgEle);
|
wrap.appendChild(svgEle);
|
||||||
recurseElementChildren(svgEle);
|
recurseElementChildren(svgEle);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user