st-comp 0.0.82 → 0.0.83

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "st-comp",
3
3
  "public": true,
4
- "version": "0.0.82",
4
+ "version": "0.0.83",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",
@@ -93,7 +93,7 @@ const createSQL = () => {
93
93
  // 格式化因子sql语句
94
94
  sql = `(${sql})`;
95
95
  // 如果不是第一条因子sql
96
- if (index !== 0) sql = ` and ${sql}`;
96
+ if (index !== 0) sql = ` && ${sql}`;
97
97
  result += sql;
98
98
  return result;
99
99
  }, "");