Skip to content

Commit

Permalink
fix: extract the correct value for select edit cell
Browse files Browse the repository at this point in the history
  • Loading branch information
Domino987 committed Jan 22, 2022
1 parent 5958ba6 commit 3f681ba
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/m-table-edit-cell.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ class MTableEditCell extends React.Component {
helperText: ''
},
isLoading: false,
value: props.getFieldValue(this.props.rowData, this.props.columnDef)
value: props.getFieldValue(
this.props.rowData,
this.props.columnDef,
false
)
};
}

Expand Down

0 comments on commit 3f681ba

Please sign in to comment.