Skip to content

Commit 5788073

Browse files
Merge pull request #510 from LevonW-IIS/fix-mantine-edit-select-props
Fix: mantine edit select props typing mismatch
2 parents 3d61a21 + 0ef4e1d commit 5788073

File tree

1 file changed

+2
-2
lines changed
  • packages/mantine-react-table/src

1 file changed

+2
-2
lines changed

packages/mantine-react-table/src/types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -541,8 +541,8 @@ export type MRT_ColumnDef<TData extends MRT_RowData, TValue = unknown> = {
541541
column: MRT_Column<TData, TValue>;
542542
row: MRT_Row<TData>;
543543
table: MRT_TableInstance<TData>;
544-
}) => HTMLPropsRef<HTMLInputElement> & Partial<MultiSelectProps>)
545-
| (HTMLPropsRef<HTMLInputElement> & Partial<MultiSelectProps>);
544+
}) => HTMLPropsRef<HTMLInputElement> & Partial<SelectProps>)
545+
| (HTMLPropsRef<HTMLInputElement> & Partial<SelectProps>);
546546
mantineEditTextInputProps?:
547547
| ((props: {
548548
cell: MRT_Cell<TData, TValue>;

0 commit comments

Comments
 (0)