Skip to content

Commit a2abfb7

Browse files
committed
return the entire axios response object
1 parent 8700252 commit a2abfb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

foreach.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default defineComponent({
44
name: "Foreach",
55
description: "Runs a sub-workflow for each value of an array",
66
key: "foreach",
7-
version: "0.0.5",
7+
version: "0.0.6",
88
type: "action",
99

1010
props: {
@@ -34,7 +34,7 @@ export default defineComponent({
3434
data: record,
3535
headers: {Authorization: `Bearer ${this.api_token}`}
3636
})
37-
results.push(resp.data)
37+
results.push(resp)
3838
}
3939
return results
4040
},

0 commit comments

Comments
 (0)