We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c1fd1f commit 653f554Copy full SHA for 653f554
frontend/src/components/Dashboard/ClusterName.tsx
@@ -9,7 +9,12 @@ const ClusterName: React.FC<ClusterNameProps> = ({ row }) => {
9
const { readOnly, name } = row.original;
10
return (
11
<div style={{ wordBreak: 'break-word', whiteSpace: 'pre-wrap' }}>
12
- {readOnly && <Tag color="blue">readonly</Tag>}
+ {readOnly && (
13
+ <>
14
+ <Tag color="blue">readonly</Tag>
15
+  
16
+ </>
17
+ )}
18
{name}
19
</div>
20
);
0 commit comments