Skip to content

Commit 6feb22a

Browse files
committed
Add whitespace after readonly cluster name tag
1 parent 3c1fd1f commit 6feb22a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

frontend/src/components/Dashboard/ClusterName.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,12 @@ const ClusterName: React.FC<ClusterNameProps> = ({ row }) => {
99
const { readOnly, name } = row.original;
1010
return (
1111
<div style={{ wordBreak: 'break-word', whiteSpace: 'pre-wrap' }}>
12-
{readOnly && <Tag color="blue">readonly</Tag>}
12+
{readOnly && (
13+
<>
14+
<Tag color="blue">readonly</Tag>
15+
&nbsp;
16+
</>
17+
)}
1318
{name}
1419
</div>
1520
);

0 commit comments

Comments
 (0)