We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f5b7d74 + c0ec0ea commit 13f7a86Copy full SHA for 13f7a86
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@kne/info-page",
3
- "version": "0.1.13",
+ "version": "0.1.14",
4
"description": "一般用在复杂的详情展示页面,InfoPage提供了一个标准的展示信息的格式",
5
"syntax": {
6
"esmodules": true
src/TableView/index.js
@@ -83,8 +83,8 @@ const TableView = p => {
83
const { name, span } = column;
84
const colItem = (item => {
85
const itemValue =
86
- typeof item.getValueOf === 'function'
87
- ? item.getValueOf(item, {
+ typeof column.getValueOf === 'function'
+ ? column.getValueOf(item, {
88
dataSource,
89
columns,
90
column,
0 commit comments