fix(frontend): fix saved/past inputs loading when in json mode on the flow detail page (#7300)

This commit is contained in:
hugocasa
2025-12-05 07:05:26 +00:00
committed by GitHub
parent 0594257a25
commit c3044a5a9b
@@ -671,6 +671,9 @@
on:selected_args={(e) => {
const nargs = JSON.parse(JSON.stringify(e.detail))
args = nargs
if (jsonView) {
runForm?.setCode(JSON.stringify(args ?? {}, null, '\t'))
}
}}
/>
{/snippet}