Skip to content

Commit

Permalink
ver. 9.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
光弘 committed Jul 31, 2018
1 parent dd7ce6d commit 58705f8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "uxcore-table",
"version": "9.4.0",
"version": "9.4.1",
"description": "table ui component for react",
"repository": "https://github.com/uxcore/uxcore-table.git",
"author": "zhouquan.yezq",
Expand Down
4 changes: 2 additions & 2 deletions src/Table.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ class Table extends React.Component {
this.bindInnerMethods();
this.uid = 0;
this.fields = {};
this.copyData = deepcopy(this.props.jsxdata);
this.copyData = deepcopy(props.jsxdata);
this.hasFixed = util.hasFixColumn(props);
this.data = this.addValuesInData(deepcopy(this.props.jsxdata));
this.data = this.addValuesInData(deepcopy(props.jsxdata));
this.state = {
data: this.data, // checkbox 内部交互
columns: this.processColumn(), // column 内部交互
Expand Down
1 change: 1 addition & 0 deletions src/Tbody.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,7 @@ class Tbody extends React.Component {
handleDataChange: props.handleDataChange,
attachCellField: props.attachCellField,
detachCellField: props.detachCellField,
isTreeLoading: props.isTreeLoading,
visible: true,
bodyNode: this.root,
};
Expand Down

0 comments on commit 58705f8

Please sign in to comment.