Skip to content

Commit 8cc55c6

Browse files
fix(apify): Fix run get dataset items action
1 parent f7b1c19 commit 8cc55c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/apify/actions/get-dataset-items/get-dataset-items.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ export default {
5151
limit: LIMIT,
5252
offset: this.offset,
5353
clean: this.clean,
54-
fields: this.fields && this.fields.join(),
55-
omit: this.omit && this.omit.join(),
54+
fields: this.fields,
55+
omit: this.omit,
5656
};
5757

5858
const results = [];

0 commit comments

Comments
 (0)