@ -11,6 +11,7 @@ export interface LogException {
}
export interface LogField {
id: string;
machineName: string;
environment: string;
application: string;
@ -126,7 +126,7 @@
const [registerModal] = useModalInner((model) => {
activeKey.value = 'basic';
modelRef.value = {} as Log;
get(model.timeStamp).then((res) => {
get(model.fields.id).then((res) => {
modelRef.value = res;
});
@ -41,7 +41,7 @@
const { L } = useLocalization('AbpAuditLogging');
const [registerModal, { openModal }] = useModal();
const [registerTable] = useTable({
rowKey: 'timeStamp',
rowKey: 'fields.id',
title: L('Logging'),
columns: getDataColumns(),
api: getList,