File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed
src/extension/ui/src/components/tile Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -264,7 +264,11 @@ const ConfigurationModal = ({
264
264
}
265
265
color = "error"
266
266
>
267
- < Typography sx = { [ tabValue === 1 && { fontWeight : 'bold' } ] } > Configuration</ Typography >
267
+ < Typography
268
+ sx = { [ tabValue === 1 && { fontWeight : 'bold' } ] }
269
+ >
270
+ Configuration
271
+ </ Typography >
268
272
</ Badge >
269
273
}
270
274
/>
@@ -302,12 +306,14 @@ const ConfigurationModal = ({
302
306
< Link
303
307
onClick = { ( ) =>
304
308
client . host . openExternal (
305
- `${ catalogItem . readme
309
+ `${
310
+ catalogItem . readme
306
311
} #tool-${ tool . name . replaceAll ( ' ' , '-' ) } ` || ''
307
312
)
308
313
}
309
314
href = "#"
310
315
target = "_blank"
316
+ sx = { { fontSize : 12 } }
311
317
>
312
318
Documentation
313
319
< Launch />
@@ -351,7 +357,7 @@ const ConfigurationModal = ({
351
357
const secretEdited =
352
358
( secret . assigned &&
353
359
localSecrets [ secret . name ] !==
354
- ASSIGNED_SECRET_PLACEHOLDER ) ||
360
+ ASSIGNED_SECRET_PLACEHOLDER ) ||
355
361
( ! secret . assigned &&
356
362
localSecrets [ secret . name ] !== '' ) ;
357
363
return (
@@ -448,7 +454,7 @@ const ConfigurationModal = ({
448
454
</ >
449
455
) }
450
456
</ DialogContent >
451
- </ Dialog >
457
+ </ Dialog >
452
458
) ;
453
459
} ;
454
460
You can’t perform that action at this time.
0 commit comments