release/2.17.1.2411.01
This commit is contained in:
parent
2261cf3104
commit
8a0998e26c
|
|
@ -75,9 +75,9 @@ class CustomBrowserMutiRight extends Component {
|
|||
const targetNode = obj.node.props.eventKey;
|
||||
const result = [];
|
||||
this.nodeIds.filter((item) => {
|
||||
return dragNodes.indexOf(item) === -1;
|
||||
return dragNodes.indexOf(String(item)) === -1;
|
||||
}).forEach((id) => {
|
||||
if (id === targetNode) {
|
||||
if (String(id) === targetNode) {
|
||||
dragNodes.forEach((drag) => {
|
||||
result.push(this.nodeObj[drag]);
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue