@kep-platform/basic-component 0.0.27 → 0.0.28

Sign up to get free protection for your applications and to get access to all the features.
@@ -171,7 +171,7 @@ function sortObjectsByProperty(objects, property, sorterType, func) {
171
171
  function filterTableRows(rows, filters) {
172
172
  return rows.filter(function (row) {
173
173
  if (row === undefined) {
174
- return false;
174
+ return true;
175
175
  }
176
176
  return Object.keys(filters).every(function (key) {
177
177
  return row[key] && row[key].toString().includes(filters[key]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kep-platform/basic-component",
3
- "version": "0.0.27",
3
+ "version": "0.0.28",
4
4
  "description": "A react library developed with dumi",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -74,10 +74,10 @@
74
74
  "react-dom": "^18.0.0",
75
75
  "stylelint": "^14.9.1"
76
76
  },
77
- "gitHead": "e15c151ba5b1e41e42047a5b438620cf13c9c1bc",
77
+ "gitHead": "199e06d46f67de10c87f790fc5c704666a0eb288",
78
78
  "dependencies": {
79
79
  "@ant-design/icons": "^5.3.7",
80
- "@kep-platform/hooks": "^0.0.27",
80
+ "@kep-platform/hooks": "^0.0.28",
81
81
  "color": "^4.2.3",
82
82
  "rc-pagination": "^4.1.0",
83
83
  "styled-components": "^6.1.11"