Skip to content

Commit 0c9fe8b

Browse files
[fix]修复异味
1 parent ef3ac7b commit 0c9fe8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/common/util/FilterCondition.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ function parseCondition(filterCondition, keys) {
1313

1414
// 处理jsonsqlfeature, 加前缀
1515
function parseConditionFeature(feature) {
16-
let copyValue = {};
17-
for (let key in feature) {
16+
const copyValue = {};
17+
for (const key in feature) {
1818
let copyKey = key;
1919
if (startsWithNumber(key)) {
2020
copyKey = '$' + key;

0 commit comments

Comments
 (0)