Merge branch 'next' into develop

This commit is contained in:
nocobase[bot] 2024-12-25 02:16:47 +00:00
commit fe27acec9e

View File

@ -59,14 +59,10 @@ const NocoBaseReactiveInternal: React.FC<IReactiveFieldProps> = (props) => {
const renderComponent = () => {
if (!field.componentType) return content;
const disabled = true;
const readOnly = true;
return React.createElement(
getComponent(field.componentType),
{
disabled,
readOnly,
...field.componentProps,
value: field.value,
},