fix(数据集): 修复数据集-表名搜索不区分大小写的问题 #8852

This commit is contained in:
dataeaseShu 2024-04-08 17:26:34 +08:00
parent 0548ac2b17
commit 81b41a6be3
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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) => {