Webflow module not fully working

The problem is with webflow module.
Whenever I choose categories it works without problems:


But whenever I just click Map option, module does not work.

Here I just clicked map, and it used same Ids for same categories, no manual typing was done.
And it outputs an error:

Sees like make is not putting those Ids as array to process but as a string.

How can I solve this problem ?

Welcome to the Make community!

You’ll have to actually insert an array of IDs, not just a comma-separated string of IDs.

To do that, you can convert your existing comma -separated string of IDs to an array using the built-in split function.

E.g.:

{{ split("id1,id2,id3"; ",") }}

2 Likes