Skip to content

Commit 9039080

Browse files
pravesh-sharmaadityatoshniwal
authored andcommitted
Fixed an issue where a long name in ERD table node was not breaking into multiple lines.
1 parent f52584e commit 9039080

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

docs/en_US/release_notes_9_13.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,7 @@ Housekeeping
2727
Bug fixes
2828
*********
2929

30+
| `Issue #8988 <https://github.com/pgadmin-org/pgadmin4/issues/8988>`_ - Fixed an issue where tools settings changed by the users were not restored on application relaunch.
31+
| `Issue #9484 <https://github.com/pgadmin-org/pgadmin4/issues/9484>`_ - Fixed an issue where a long name in ERD table node was not breaking into multiple lines.
32+
| `Issue #9486 <https://github.com/pgadmin-org/pgadmin4/issues/9486>`_ - Fixed an issue where column comments were not displayed in the SQL tab for materialised views.
33+

web/pgadmin/tools/erd/static/js/erd_tool/nodes/TableNode.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ const StyledDiv = styled('div')(({theme})=>({
261261
...theme.mixins.panelBorder.bottom,
262262
padding: '0.125rem 0.25rem',
263263
display: 'flex',
264-
'&.TableNode-tableNameText': {
264+
'& .TableNode-tableNameText': {
265265
fontWeight: 'bold',
266266
wordBreak: 'break-all',
267267
margin: 'auto 0',

0 commit comments

Comments
 (0)