From 90390802149c6526460cd50a4a2bb526867ba223 Mon Sep 17 00:00:00 2001 From: Pravesh Sharma Date: Mon, 9 Feb 2026 14:52:48 +0530 Subject: [PATCH] Fixed an issue where a long name in ERD table node was not breaking into multiple lines. --- docs/en_US/release_notes_9_13.rst | 4 ++++ web/pgadmin/tools/erd/static/js/erd_tool/nodes/TableNode.jsx | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/en_US/release_notes_9_13.rst b/docs/en_US/release_notes_9_13.rst index 36df0c522..8df851f4b 100644 --- a/docs/en_US/release_notes_9_13.rst +++ b/docs/en_US/release_notes_9_13.rst @@ -27,3 +27,7 @@ Housekeeping Bug fixes ********* + | `Issue #8988 `_ - Fixed an issue where tools settings changed by the users were not restored on application relaunch. + | `Issue #9484 `_ - Fixed an issue where a long name in ERD table node was not breaking into multiple lines. + | `Issue #9486 `_ - Fixed an issue where column comments were not displayed in the SQL tab for materialised views. + diff --git a/web/pgadmin/tools/erd/static/js/erd_tool/nodes/TableNode.jsx b/web/pgadmin/tools/erd/static/js/erd_tool/nodes/TableNode.jsx index 66f205e55..1b5bd6477 100644 --- a/web/pgadmin/tools/erd/static/js/erd_tool/nodes/TableNode.jsx +++ b/web/pgadmin/tools/erd/static/js/erd_tool/nodes/TableNode.jsx @@ -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',