File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
site/src/pages/OrganizationSettingsPage Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ const JobRow: FC<JobRowProps> = ({ job }) => {
171
171
< button
172
172
className = { cn ( [
173
173
"flex items-center gap-1 p-0 bg-transparent border-0 text-inherit text-xs cursor-pointer" ,
174
- "transition-colors hover:text-content-primary font-medium" ,
174
+ "transition-colors hover:text-content-primary font-medium whitespace-nowrap " ,
175
175
isOpen && "text-content-primary" ,
176
176
] ) }
177
177
type = "button"
@@ -194,7 +194,7 @@ const JobRow: FC<JobRowProps> = ({ job }) => {
194
194
</ TableCell >
195
195
< TableCell >
196
196
{ job . metadata . template_name ? (
197
- < div className = "flex items-center gap-1" >
197
+ < div className = "flex items-center gap-1 whitespace-nowrap " >
198
198
< Avatar
199
199
variant = "icon"
200
200
src = { metadata . template_icon }
@@ -209,7 +209,14 @@ const JobRow: FC<JobRowProps> = ({ job }) => {
209
209
) }
210
210
</ TableCell >
211
211
< TableCell >
212
- < Badge size = "sm" > [foo=bar]</ Badge >
212
+ < div className = "flex items-center gap-1 flex-wrap" >
213
+ { Object . entries ( job . tags ) . map ( ( [ k , v ] ) => (
214
+ < Badge size = "sm" key = { k } className = "whitespace-nowrap" >
215
+ [{ k }
216
+ { v && `=${ v } ` } ]
217
+ </ Badge >
218
+ ) ) }
219
+ </ div >
213
220
</ TableCell >
214
221
< TableCell >
215
222
< StatusIndicator
You can’t perform that action at this time.
0 commit comments