Skip to content

Commit c5afe12

Browse files
authored
Merge pull request #6253 from marmelab/typescript-selectfield-typography
[TypeScript] Fix SelectField doesn't accept Typography props
2 parents c498478 + 6cc5aba commit c5afe12

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/crm/src/companies/CompanyCard.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ export const CompanyCard = ({ record }: { record: Company }) => {
6262
{record.name}
6363
</Typography>
6464
<SelectField
65-
// @ts-ignore
6665
color="textSecondary"
6766
source="sector"
6867
choices={sectors}

packages/ra-ui-materialui/src/field/SelectField.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { FC, memo } from 'react';
33
import PropTypes from 'prop-types';
44
import get from 'lodash/get';
55
import { ChoicesProps, useChoices, useRecordContext } from 'ra-core';
6-
import Typography from '@material-ui/core/Typography';
6+
import { Typography, TypographyProps } from '@material-ui/core';
77

88
import sanitizeFieldRestProps from './sanitizeFieldRestProps';
99
import { PublicFieldProps, InjectedFieldProps, fieldPropTypes } from './types';
@@ -144,7 +144,8 @@ SelectField.propTypes = {
144144
export interface SelectFieldProps
145145
extends ChoicesProps,
146146
PublicFieldProps,
147-
InjectedFieldProps {}
147+
InjectedFieldProps,
148+
TypographyProps {}
148149

149150
SelectField.displayName = 'SelectField';
150151

0 commit comments

Comments
 (0)