简体   繁体   English

Typo3 10 TCA “'type' => 'inline',” 创建新关系并上传按钮自动隐藏

[英]Typo3 10 TCA “'type' => 'inline',” create new relation and upload button auto hide

After upload and save 1 relation/file, the "create new relation" and "select and upload" button is not showing.上传并保存 1 个关系/文件后,“创建新关系”和“选择并上传”按钮未显示。 Due to that issue, I am unable to update that attached file or edit the record.由于这个问题,我无法更新该附件或编辑记录。

Below are the TCA configuration code for that field:以下是该字段的 TCA 配置代码:

'catalogs' => [
        'exclude' => 1,
        'label' => 'catalogs',
        'config' => [
            'type' => 'inline',
            'foreign_table' => 'catalog',
            'appearance' => [
                'collapseAll' => 1,
                'expandSingle' => 1,
                'newRecordLinkAddTitle' => 0,
            ],
            'foreign_field' => 'supplier',
            'minitems' => 0,
            'maxitems' => 5,
        ]
    ],

在此处输入图像描述

在此处输入图像描述

Thanks in advance.提前致谢。

That was a bug introduced with TYPO3 v10.4.11 and fixed in 10.4.13: https://forge.typo3.org/issues/93091这是 TYPO3 v10.4.11 引入并在 10.4.13 中修复的错误: https://forge.typo3.org/issues/939

Please update your TYPO3 to the latest version.请将您的 TYPO3 更新到最新版本。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM