Skip to content

Commit

Permalink
fix(data-source): 迭代条件条件组编译逻辑不对
Browse files Browse the repository at this point in the history
  • Loading branch information
roymondchen committed Jul 12, 2024
1 parent 2b8648e commit 1fc04b4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/data-source/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ export const compliedIteratorItemConditions = (displayConds: DisplayCond[] = [],
}
}

return result;
if (result) {
return result;
}
}

return false;
Expand Down

0 comments on commit 1fc04b4

Please sign in to comment.