Fixed an issue where a long name in ERD table node was not breaking into multiple lines.

pull/9605/head
Pravesh Sharma 2026-02-09 14:52:48 +05:30 committed by Aditya Toshniwal
parent f52584eef8
commit 9039080214
2 changed files with 5 additions and 1 deletions

View File

@ -27,3 +27,7 @@ Housekeeping
Bug fixes
*********
| `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.
| `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.
| `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.

View File

@ -261,7 +261,7 @@ const StyledDiv = styled('div')(({theme})=>({
...theme.mixins.panelBorder.bottom,
padding: '0.125rem 0.25rem',
display: 'flex',
'&.TableNode-tableNameText': {
'& .TableNode-tableNameText': {
fontWeight: 'bold',
wordBreak: 'break-all',
margin: 'auto 0',