Merge pull request #2409 from automatisch/AUT-1502

feat: show stringified sampleValue in PowerInput
This commit is contained in:
Ali BARIN
2025-03-26 16:30:55 +01:00
committed by GitHub

View File

@@ -65,7 +65,10 @@ const process = ({ data, parentKey, index, parentLabel = '' }) => {
{
label,
value,
sampleValue,
sampleValue:
typeof sampleValue === 'string'
? sampleValue
: JSON.stringify(sampleValue),
},
];
});