File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
src/extension/ui/src/components/tile Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -82,14 +82,15 @@ const ConfigEditor = ({
82
82
return (
83
83
< Stack spacing = { 1 } >
84
84
< Typography variant = "subtitle2" > Parameters</ Typography >
85
- < Stack direction = "column" spacing = { 2 } >
85
+ < Stack direction = "column" spacing = { 1 } >
86
86
{ Object . keys ( flattenedConfig ) . map ( ( key : string ) => {
87
87
const edited = localConfig [ key ] !== flattenedConfig [ key ] ;
88
88
const isSaving = savingKeys . has ( key ) ;
89
89
90
90
return (
91
91
< Stack key = { key } direction = "row" spacing = { 2 } >
92
92
< TextField
93
+ fullWidth
93
94
size = "small"
94
95
label = { key }
95
96
value = { localConfig [ key ] || '' }
Original file line number Diff line number Diff line change @@ -252,6 +252,7 @@ const ConfigurationModal = ({
252
252
< Stack
253
253
spacing = { 1 }
254
254
sx = { {
255
+ padding : 1 ,
255
256
overflow : 'auto' ,
256
257
height : 'calc(80vh - 200px)' ,
257
258
minHeight : '180px' ,
@@ -272,12 +273,13 @@ const ConfigurationModal = ({
272
273
< Stack
273
274
spacing = { 1 }
274
275
sx = { {
276
+ padding : 1 ,
275
277
overflow : 'auto' ,
276
278
height : 'calc(80vh - 200px)' ,
277
279
minHeight : '180px' ,
278
280
} }
279
281
>
280
- < Stack direction = "column" spacing = { 2 } >
282
+ < Stack direction = "column" spacing = { 2 } >
281
283
< ConfigEditor catalogItem = { catalogItem } client = { client } />
282
284
283
285
{ catalogItem . secrets ?. length > 0 && (
You can’t perform that action at this time.
0 commit comments