feat: support long text fields as title fields for association field (#6495)

This commit is contained in:
Katherine 2025-03-18 15:29:49 +08:00 committed by GitHub
parent dd47ca4552
commit fa0c378466
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -28,6 +28,7 @@ export class TextareaFieldInterface extends CollectionFieldInterface {
}; };
availableTypes = ['text', 'json', 'string']; availableTypes = ['text', 'json', 'string'];
hasDefaultValue = true; hasDefaultValue = true;
titleUsable = true;
properties = { properties = {
...defaultProps, ...defaultProps,
}; };