release/2.17.1.2411.01

This commit is contained in:
lys 2024-11-19 10:54:33 +08:00
parent 2261cf3104
commit 8a0998e26c
1 changed files with 2 additions and 2 deletions

View File

@ -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]);
});