Skip to content

Commit 0ef4e1d

Browse files
committed
fix mantine edit select props typing mismatch
1 parent 1cde9fb commit 0ef4e1d

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)