Skip to content

Commit d067bec

Browse files
committed
Adjustments
1 parent 06428f6 commit d067bec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/utopian_labs/actions/initiate-research-run/initiate-research-run.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export default {
6666
context: this.context,
6767
...parseObjectEntries(this.additionalOptions),
6868
});
69-
$.export("$summary", `Successfully initiated run (ID: ${response.runId}`);
69+
$.export("$summary", `Successfully initiated run (ID: ${response.id}`);
7070
return response;
7171
},
7272
};

components/utopian_labs/common/utils.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function optionalParseAsJSON(value) {
88
}
99
}
1010

11-
export function parseObjectEntries(value) {
11+
export function parseObjectEntries(value = {}) {
1212
const obj = typeof value === "string"
1313
? JSON.parse(value)
1414
: value;

0 commit comments

Comments
 (0)