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 ff56bab commit f9dde53Copy full SHA for f9dde53
src/extension/ui/src/components/tile/ConfigEditor.tsx
@@ -49,9 +49,9 @@ const ConfigEditor = ({
49
() =>
50
configSchema
51
? deepFlattenObject({
52
- ...catalogItem.configTemplate,
53
- ...existingConfigForItem,
54
- })
+ ...catalogItem.configTemplate,
+ ...existingConfigForItem,
+ })
55
: {},
56
[catalogItem.configTemplate, existingConfigForItem, configSchema]
57
);
@@ -82,7 +82,7 @@ const ConfigEditor = ({
82
return (
83
<Stack spacing={1}>
84
<Typography variant="subtitle2">Parameters</Typography>
85
- <Stack direction="column" spacing={1}>
+ <Stack>
86
{Object.keys(flattenedConfig).map((key: string) => {
87
const edited = localConfig[key] !== flattenedConfig[key];
88
const isSaving = savingKeys.has(key);
0 commit comments