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.
2 parents f5ca287 + 2ff313f commit e843854Copy full SHA for e843854
packages/mantine-react-table/src/components/inputs/MRT_EditCellTextInput.tsx
@@ -136,8 +136,8 @@ export const MRT_EditCellTextInput = <TData extends MRT_RowData>({
136
value={value as any}
137
{...(selectProps as MRT_SelectProps)}
138
onBlur={handleBlur}
139
- onChange={(value) => {
140
- (selectProps as MRT_SelectProps).onChange?.(value as any);
+ onChange={(value, option) => {
+ (selectProps as MRT_SelectProps).onChange?.(value as any, option);
141
setValue(value);
142
}}
143
onClick={(e) => {
0 commit comments