mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-09 23:49:27 +08:00
fix: client e2e test (#6058)
This commit is contained in:
parent
565e55559a
commit
6df9d66837
@ -88,7 +88,15 @@ export const TableColumnDecorator = (props) => {
|
|||||||
}, [uiSchema?.title]);
|
}, [uiSchema?.title]);
|
||||||
|
|
||||||
if (!designable || Designer.isNullComponent) {
|
if (!designable || Designer.isNullComponent) {
|
||||||
return props.children;
|
return (
|
||||||
|
<CollectionFieldContext.Provider value={collectionField}>
|
||||||
|
<Designer fieldSchema={fieldSchema} uiSchema={uiSchema} collectionField={collectionField} />
|
||||||
|
<span role="button">
|
||||||
|
{fieldSchema?.required && <span className="ant-formily-item-asterisk">*</span>}
|
||||||
|
<span>{field?.title || compile(uiSchema?.title)}</span>
|
||||||
|
</span>
|
||||||
|
</CollectionFieldContext.Provider>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<SortableItem
|
<SortableItem
|
||||||
|
Loading…
x
Reference in New Issue
Block a user