Skip to content

Commit

Permalink
Fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
jassmith committed Aug 22, 2023
1 parent e499181 commit e2c3889
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cells/src/cell.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ export const CustomCellEditing: React.VFC = () => {
onCellEdited={(cell, newVal) => {
if (newVal.kind !== GridCellKind.Custom) return;
if (DropdownRenderer.isMatch(newVal)) {
data.current[cell[1]] = newVal.data.value;
data.current[cell[1]] = newVal.data.value ?? "";
}
}}
getCellsForSelection={true}
Expand Down

0 comments on commit e2c3889

Please sign in to comment.