|
@@ -118,6 +118,7 @@ export interface IRelation {
|
|
|
fromCase?: string[];
|
|
fromCase?: string[];
|
|
|
fromSpell?: string;
|
|
fromSpell?: string;
|
|
|
to?: string[];
|
|
to?: string[];
|
|
|
|
|
+ editor?: IUser;
|
|
|
updated_at?: string;
|
|
updated_at?: string;
|
|
|
created_at?: string;
|
|
created_at?: string;
|
|
|
}
|
|
}
|
|
@@ -250,7 +251,16 @@ const Widget = () => {
|
|
|
));
|
|
));
|
|
|
},
|
|
},
|
|
|
},
|
|
},
|
|
|
-
|
|
|
|
|
|
|
+ {
|
|
|
|
|
+ title: intl.formatMessage({
|
|
|
|
|
+ id: "forms.fields.editor.label",
|
|
|
|
|
+ }),
|
|
|
|
|
+ dataIndex: "editor",
|
|
|
|
|
+ key: "editor",
|
|
|
|
|
+ render: (text, row, index, action) => {
|
|
|
|
|
+ return row.editor?.realName;
|
|
|
|
|
+ },
|
|
|
|
|
+ },
|
|
|
{
|
|
{
|
|
|
title: intl.formatMessage({
|
|
title: intl.formatMessage({
|
|
|
id: "forms.fields.updated-at.label",
|
|
id: "forms.fields.updated-at.label",
|
|
@@ -333,6 +343,7 @@ const Widget = () => {
|
|
|
case: item.case,
|
|
case: item.case,
|
|
|
from: item.from,
|
|
from: item.from,
|
|
|
to: item.to,
|
|
to: item.to,
|
|
|
|
|
+ editor: item.editor,
|
|
|
created_at: item.created_at,
|
|
created_at: item.created_at,
|
|
|
updated_at: item.updated_at,
|
|
updated_at: item.updated_at,
|
|
|
};
|
|
};
|