xianniu-ui 0.3.27 → 0.3.28

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,6 +1,6 @@
1
1
  {
2
2
  "name": "xianniu-ui",
3
- "version": "0.3.27",
3
+ "version": "0.3.28",
4
4
  "private": false,
5
5
  "main": "lib/xianniu-ui.umd.min.js",
6
6
  "scripts": {
@@ -112,7 +112,7 @@ export default {
112
112
  isShowColumn() {
113
113
  return (row) => {
114
114
  if (row.show != undefined) {
115
- return typeof row.show === "function" ? row.show() : row.show;
115
+ return typeof row.show === "function" ? row.show(row) : row.show;
116
116
  }
117
117
  return true;
118
118
  };