diff --git a/frontend/src/components/workbench/panel/action-panel.tsx b/frontend/src/components/workbench/panel/action-panel.tsx index 172ec2856..e4ccbbea7 100644 --- a/frontend/src/components/workbench/panel/action-panel.tsx +++ b/frontend/src/components/workbench/panel/action-panel.tsx @@ -148,7 +148,7 @@ enum SaveState { const parseYaml = (str: string | undefined) => str ? YAML.parse(str) : undefined const stringifyYaml = (obj: unknown | undefined) => - obj ? YAML.stringify(obj) : undefined + obj ? YAML.stringify(obj) : "" export function ActionPanel({ actionId,