CN-1049 fix: 修复不点击condition,选择左侧filter条件时搜索框参数没有单引号包裹的问题

This commit is contained in:
刘洪洪
2023-05-31 17:33:45 +08:00
parent df7cd7e289
commit 28e23111a5
3 changed files with 19 additions and 14 deletions

View File

@@ -756,8 +756,7 @@ export function stringInQuot (value) {
}
const match = `${value}`.match(/^'.+?'$/)
// return match ? value : `'${value}'` // 单引号包裹,暂时保留
return match ? value : `${value}`
return match ? value : `'${value}'`
}
// IN和LIKE前后加空格