From 6feb22a082c409bb53524e3235c33906641df808 Mon Sep 17 00:00:00 2001 From: Trevor North Date: Fri, 31 Oct 2025 13:12:53 +0000 Subject: [PATCH 1/2] Add whitespace after readonly cluster name tag --- frontend/src/components/Dashboard/ClusterName.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/Dashboard/ClusterName.tsx b/frontend/src/components/Dashboard/ClusterName.tsx index 70bcc9b76..09e5a9489 100644 --- a/frontend/src/components/Dashboard/ClusterName.tsx +++ b/frontend/src/components/Dashboard/ClusterName.tsx @@ -9,7 +9,12 @@ const ClusterName: React.FC = ({ row }) => { const { readOnly, name } = row.original; return (
- {readOnly && readonly} + {readOnly && ( + <> + readonly +   + + )} {name}
); From dce0474d538c21e470d30712971c413e0fbaa331 Mon Sep 17 00:00:00 2001 From: Trevor North Date: Fri, 7 Nov 2025 17:39:11 +0000 Subject: [PATCH 2/2] Set a right margin instead of using a non-breaking space --- frontend/src/components/Dashboard/ClusterName.tsx | 7 +++---- frontend/src/components/Topics/List/TopicTitleCell.tsx | 7 +++---- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/frontend/src/components/Dashboard/ClusterName.tsx b/frontend/src/components/Dashboard/ClusterName.tsx index 09e5a9489..9a8290d5d 100644 --- a/frontend/src/components/Dashboard/ClusterName.tsx +++ b/frontend/src/components/Dashboard/ClusterName.tsx @@ -10,10 +10,9 @@ const ClusterName: React.FC = ({ row }) => { return (
{readOnly && ( - <> - readonly -   - + + readonly + )} {name}
diff --git a/frontend/src/components/Topics/List/TopicTitleCell.tsx b/frontend/src/components/Topics/List/TopicTitleCell.tsx index 59ef6c53a..6488751b1 100644 --- a/frontend/src/components/Topics/List/TopicTitleCell.tsx +++ b/frontend/src/components/Topics/List/TopicTitleCell.tsx @@ -15,10 +15,9 @@ export const TopicTitleCell: React.FC> = ({ style={{ wordBreak: 'break-word', whiteSpace: 'pre-wrap' }} > {internal && ( - <> - IN -   - + + IN + )} {name}