Merge pull request #2409 from automatisch/AUT-1502
feat: show stringified sampleValue in PowerInput
This commit is contained in:
@@ -65,7 +65,10 @@ const process = ({ data, parentKey, index, parentLabel = '' }) => {
|
|||||||
{
|
{
|
||||||
label,
|
label,
|
||||||
value,
|
value,
|
||||||
sampleValue,
|
sampleValue:
|
||||||
|
typeof sampleValue === 'string'
|
||||||
|
? sampleValue
|
||||||
|
: JSON.stringify(sampleValue),
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user