Add delete button to dropdown options

How can i add a delete button to md-option ? here's my flow.
flows.json (1.1 KB)

If it's the standard ui dropdown node, you could populate it with msg.options that could be retrieved from an object stored in flow or global. Then you could have a button that triggered a function to remove the item from your flow/global object and then repopulate the dropdown.

1 Like

okay, this seems too logical. i will try it. Thanks.