DataShapes DropDown Data Issues

Hello, I am having issues with the DataShapes package.
Can anyone explain to me why the dropdown input for Datashapes only shows 10 index of a sublist?
I have InputName as a list. The key and value are nested list.


When the script runs, the first 5 input are fine since the value and key are have 10 or less items. The 6th input only shows 10 items from the key and value sublist.

This is just a weird “bug” with how the input node is matching the list of input names with the keys/values length. All you need to do is provide the specific list levels to ensure you get the right mapping of list structures.

In this case:

  • InputName @L1
  • Keys_ @L2
  • Values_ @L2
1 Like

Works perfectly now. Thank you!!