fix(数据集): 修复数据集-表名搜索不区分大小写的问题 #8852
This commit is contained in:
parent
0548ac2b17
commit
81b41a6be3
@ -494,7 +494,7 @@ const changeSideTreeStatus = val => {
|
||||
|
||||
const filterNode = (value: string, data: BusiTreeNode) => {
|
||||
if (!value) return true
|
||||
return data.name?.includes(value)
|
||||
return data.name?.toLowerCase().includes(value.toLowerCase())
|
||||
}
|
||||
const mouseenter = () => {
|
||||
appStore.setArrowSide(true)
|
||||
|
||||
@ -563,7 +563,7 @@ const nodeCollapse = data => {
|
||||
|
||||
const filterNode = (value: string, data: BusiTreeNode) => {
|
||||
if (!value) return true
|
||||
return data.name?.includes(value)
|
||||
return data.name?.toLowerCase().includes(value.toLowerCase())
|
||||
}
|
||||
|
||||
const editDatasource = (editType?: number) => {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user