Search code examples
reactjsadmin-on-rest

Translation issue with admin-on-rest FormTab


I've got a translation issue on admin-on-rest. My tabs have labels when FormTab are directly inside the Edit component.

The tab title is empty for the third one only. I've got an error (MyCustomFormTab) :

Warning: Missing translation for key: "undefined"

const EditComponent = props => (
    <Edit {...props}>
        <TabbedForm>
            <FormTab label="tab Title" />
            <FormTab label="Other Tab Title" />
            <MyCustomFormTab />
        </TabbedForm>
    </Edit>
)

const MyCustomFormtab = props => (
    <FormTab label="My Custom tab Title" />
)

Am I doing something wrong ?


Solution

  • FormTab components must be direct children of the TabbedForm component.