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 06428f6 commit d067becCopy full SHA for d067bec
components/utopian_labs/actions/initiate-research-run/initiate-research-run.mjs
@@ -66,7 +66,7 @@ export default {
66
context: this.context,
67
...parseObjectEntries(this.additionalOptions),
68
});
69
- $.export("$summary", `Successfully initiated run (ID: ${response.runId}`);
+ $.export("$summary", `Successfully initiated run (ID: ${response.id}`);
70
return response;
71
},
72
};
components/utopian_labs/common/utils.mjs
@@ -8,7 +8,7 @@ function optionalParseAsJSON(value) {
8
}
9
10
11
-export function parseObjectEntries(value) {
+export function parseObjectEntries(value = {}) {
12
const obj = typeof value === "string"
13
? JSON.parse(value)
14
: value;
0 commit comments