Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(tree): 修复清除搜索条件无法收缩问题 #601

Merged
merged 1 commit into from
Aug 29, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/tree/tree-legacy/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ export const getAncestorIds = (id, data, arr = []) => {
// 收集所有需要展开的节点 id
export const collectExpandId = (data, searchValue, collection = [], allData) => {
data.forEach(item => {
if (item.title.includes(searchValue)) {
if (searchValue && item.title.includes(searchValue)) {
const parentIds = getAncestorIds(item.id, allData, [])
collection.splice(collection.length - 1, 0, ...parentIds)
}
Expand Down
2 changes: 1 addition & 1 deletion components/tree/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ export const getAncestorIds = (id, data, arr = []) => {
// 收集所有需要展开的节点 id
export const collectExpandId = (data, searchValue, collection = [], allData) => {
data.forEach(item => {
if (item.title.includes(searchValue)) {
if (searchValue && item.title.includes(searchValue)) {
const parentIds = getAncestorIds(item.id, allData, [])
collection.splice(collection.length - 1, 0, ...parentIds)
}
Expand Down