Wait node with On Form Submitted and dropdown element type using an expression

Describe the problem/error/question

I am trying to display a dropdown where the id and values are passed into the wait node. when executed, i am not see all 5 dropdown option, but just 1

The line one line i am seeing is “[object Object],[object Object],[object Object],[object Object],[object Object]”

Any and all help is greatly appreciated!

below is the input:

[
{
“dropdown_options_config”: [
{
“id”: “xsmall”,
“name”: “extra small”
},
{
“id”: “small”,
“name”: “small”
},
{
“id”: “medium”,
“name”: “medium”
},
{
“id”: “large”,
“name”: “large”
},
{
“id”: “full”,
“name”: “full build”
}
]
}
]

fields for the wait node are as follows

resume: on form submitted

auth: none

form title: pick a size

form desc: pick a size

form elements:

field name: pick_size

element type: dropdown

field options:

option: {{ $json.dropdown_options_config }}

What is the error message (if any)?

Please share your workflow

Share the output returned by the last node

Information on your n8n setup

  • n8n version: community docker version
  • Database (default: SQLite): postgresql
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system: windows 11

Hi @danpichler1

I think you can’t pass “Options” into an “Option” field, it only expects a single value.
So you’ll probably need to add more “Option” fields:

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.