Skip to content

Commit

Permalink
Fix #2666: DataTable: Cell edit support Dropdown. (#4178)
Browse files Browse the repository at this point in the history
* Fix #3559: Component: Calendar -> keepInvalid no longer works

* Calendar update fix for isInvalid

* make isSingleSelection support for keepInvalid

* fix body-cell editor dropdown
  • Loading branch information
cerbugabriel authored Apr 21, 2023
1 parent dedcb65 commit fc37c9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/datatable/BodyCell.js
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ export const BodyCell = React.memo((props) => {
}, [props.editingMeta]);

React.useEffect(() => {
if (props.editMode === 'cell' || props.editMode === 'row') {
if (props.editMode === 'row') {
const callbackParams = getCellCallbackParams();
const params = { ...callbackParams, editing: editingState, editingKey };

Expand Down

0 comments on commit fc37c9c

Please sign in to comment.