File tree Expand file tree Collapse file tree 1 file changed +14
-12
lines changed
site/src/pages/OrganizationSettingsPage/OrganizationProvisionerKeysPage Expand file tree Collapse file tree 1 file changed +14
-12
lines changed Original file line number Diff line number Diff line change @@ -62,16 +62,18 @@ export const ProvisionerKeyRow: FC<ProvisionerKeyRowProps> = ({
62
62
{ isOpen && (
63
63
< TableRow >
64
64
< TableCell colSpan = { 999 } className = "p-4 border-t-0" >
65
- < dl >
66
- < dt > Provisioners: </ dt >
67
- { provisioners . length === 0 ? (
68
- < dd className = "text-muted-foreground" >
69
- No provisioners found for this key
70
- </ dd >
71
- ) : (
72
- provisioners . map ( ( provisioner ) => (
65
+ { provisioners . length === 0 ? (
66
+ < span className = "text-muted-foreground" >
67
+ No provisioners found for this key.
68
+ </ span >
69
+ ) : (
70
+ < dl >
71
+ < dt > Provisioners: </ dt >
72
+ { provisioners . map ( ( provisioner ) => (
73
73
< dd key = { provisioner . id } >
74
- { provisioner . name } ({ provisioner . id } ){ " " }
74
+ < span className = "font-mono text-content-primary" >
75
+ { provisioner . name } ({ provisioner . id } ){ " " }
76
+ </ span >
75
77
< CopyButton
76
78
text = { provisioner . id }
77
79
label = "Copy provisioner ID"
@@ -84,9 +86,9 @@ export const ProvisionerKeyRow: FC<ProvisionerKeyRowProps> = ({
84
86
</ RouterLink >
85
87
</ Button >
86
88
</ dd >
87
- ) )
88
- ) }
89
- </ dl >
89
+ ) ) }
90
+ </ dl >
91
+ ) }
90
92
</ TableCell >
91
93
</ TableRow >
92
94
) }
You can’t perform that action at this time.
0 commit comments