mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-09 07:29:24 +08:00
* 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>
15 lines
292 B
TypeScript
15 lines
292 B
TypeScript
export const updatedAt = {
|
|
options: () => ({
|
|
type: 'date',
|
|
field: 'updatedAt',
|
|
// name,
|
|
uiSchema: {
|
|
type: 'string',
|
|
title: '{{t("Last updated at")}}',
|
|
'x-component': 'DatePicker',
|
|
'x-component-props': {},
|
|
'x-read-pretty': true,
|
|
},
|
|
}),
|
|
};
|