sealday
ede7ead8b1
Co-authored-by: sealday <sealday@gmail.com> Reviewed-on: daoyoucloud/tachybase#1045
20 lines
410 B
TypeScript
20 lines
410 B
TypeScript
export const updatedBy = {
|
|
options: () => ({
|
|
type: 'belongsTo',
|
|
target: 'users',
|
|
foreignKey: 'updatedById',
|
|
uiSchema: {
|
|
type: 'object',
|
|
title: '{{t("Last updated by")}}',
|
|
'x-component': 'AssociationField',
|
|
'x-component-props': {
|
|
fieldNames: {
|
|
value: 'id',
|
|
label: 'nickname',
|
|
},
|
|
},
|
|
'x-read-pretty': true,
|
|
},
|
|
}),
|
|
};
|