代码之家  ›  专栏  ›  技术社区  ›  BaptWaels

rest FormTab上管理员的翻译问题

  •  1
  • BaptWaels  · 技术社区  · 6 年前

    我有一个关于rest上admin的翻译问题。当FormTab直接位于编辑组件内时,“我的选项卡”会有标签。

    仅第三个选项卡的选项卡标题为空。我有一个错误(MyCustomFormTab):

    警告:缺少键的翻译:“未定义”

    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" />
    )
    

    我做错什么了吗?

    1 回复  |  直到 6 年前
        1
  •  1
  •   Gildas Garcia    6 年前

    FormTab 组件必须是 TabbedForm 组成部分