Skip to content

Commit 82b4715

Browse files
committed
cr vc-tree
1 parent 6730812 commit 82b4715

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

components/vc-tree-select/src/util.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,9 +203,7 @@ export function getFilterTree(h, treeNodes, searchValue, filterFunc, valueEntiti
203203
match = true;
204204
}
205205
const $slots = getSlots(node);
206-
const children = $slots.default
207-
.map(mapFilteredNodeToData)
208-
.filter(n => n);
206+
const children = $slots.default.map(mapFilteredNodeToData).filter(n => n);
209207
delete $slots.default;
210208
const slotsKey = Object.keys($slots);
211209
if (children.length || match) {

components/vc-tree/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// based on rc-tree 1.14.9
1+
// based on rc-tree 1.14.10
22
'use strict';
33

44
module.exports = require('./src/');

0 commit comments

Comments
 (0)