mirror of
https://github.com/nocobase/nocobase
synced 2024-11-16 21:47:21 +00:00
3b5b732a1a
* feat: plugin-mock-collections * fix: mock bug * feat: field interfaces * fix: field interface * fix: formula * fix: file collection * fix: map * refactor: change api path from :create to :mock * fix: avoid test failed * chore: remove useless code * fix: mock records * fix: association * feat: custom data * fix: mockAttachment * fix: count --------- Co-authored-by: Rain <958414905@qq.com>
10 lines
170 B
TypeScript
10 lines
170 B
TypeScript
export const collection = {
|
|
options: (options) => ({
|
|
type: 'string',
|
|
uiSchema: {
|
|
type: 'string',
|
|
'x-component': 'CollectionSelect',
|
|
},
|
|
}),
|
|
};
|