File tree 2 files changed +3
-3
lines changed
examples/crm/src/companies
packages/ra-ui-materialui/src/field
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,6 @@ export const CompanyCard = ({ record }: { record: Company }) => {
62
62
{ record . name }
63
63
</ Typography >
64
64
< SelectField
65
- // @ts -ignore
66
65
color = "textSecondary"
67
66
source = "sector"
68
67
choices = { sectors }
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { FC, memo } from 'react';
3
3
import PropTypes from 'prop-types' ;
4
4
import get from 'lodash/get' ;
5
5
import { ChoicesProps , useChoices , useRecordContext } from 'ra-core' ;
6
- import Typography from '@material-ui/core/Typography ' ;
6
+ import { Typography , TypographyProps } from '@material-ui/core' ;
7
7
8
8
import sanitizeFieldRestProps from './sanitizeFieldRestProps' ;
9
9
import { PublicFieldProps , InjectedFieldProps , fieldPropTypes } from './types' ;
@@ -144,7 +144,8 @@ SelectField.propTypes = {
144
144
export interface SelectFieldProps
145
145
extends ChoicesProps ,
146
146
PublicFieldProps ,
147
- InjectedFieldProps { }
147
+ InjectedFieldProps ,
148
+ TypographyProps { }
148
149
149
150
SelectField . displayName = 'SelectField' ;
150
151
You can’t perform that action at this time.
0 commit comments