We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e499181 commit e2c3889Copy full SHA for e2c3889
packages/cells/src/cell.stories.tsx
@@ -496,7 +496,7 @@ export const CustomCellEditing: React.VFC = () => {
496
onCellEdited={(cell, newVal) => {
497
if (newVal.kind !== GridCellKind.Custom) return;
498
if (DropdownRenderer.isMatch(newVal)) {
499
- data.current[cell[1]] = newVal.data.value;
+ data.current[cell[1]] = newVal.data.value ?? "";
500
}
501
}}
502
getCellsForSelection={true}
0 commit comments