Describe the bug
"x" buttons have same id in HTML DOM.
The problem happens when every node has id property, when nodes have .id, "x" buttons stop using DropdownTreeSelect.props.id.
To Reproduce
- Visit my codesandbox
- Inspect the page, find for "button.tag-remove" (all buttons which's CSS class = "tag-remove")
- Actual behavior: You will notice all found buttons have the same id="2_button"
Expected behavior
The buttons' ids should be different between different DropdownTreeSelects (like ${DropdownTreeSelect.props.id}_${node.id}_button).


Describe the bug
"x" buttons have same id in HTML DOM.
The problem happens when every node has
idproperty, when nodes have .id, "x" buttons stop using DropdownTreeSelect.props.id.To Reproduce
Expected behavior
The buttons' ids should be different between different DropdownTreeSelects (like ${DropdownTreeSelect.props.id}_${node.id}_button).