diff --git a/ui-ngx/src/app/modules/home/components/event/event-table-config.ts b/ui-ngx/src/app/modules/home/components/event/event-table-config.ts index 4b7a2c8ade..5b0b799e59 100644 --- a/ui-ngx/src/app/modules/home/components/event/event-table-config.ts +++ b/ui-ngx/src/app/modules/home/components/event/event-table-config.ts @@ -190,9 +190,9 @@ export class EventTableConfig extends EntityTableConfig { this.columns.push( new EntityTableColumn('type', 'event.type', '100%', (entity) => entity.type, entity => ({}), false), - new EntityTableColumn('action', 'event.action', '100%', + new EntityTableColumn('action', 'edge.event-action', '100%', (entity) => entity.action, entity => ({}), false), - new EntityTableColumn('entityId', 'event.entityId', '100%', + new EntityTableColumn('entityId', 'edge.entity-id', '100%', (entity) => entity.id.id, entity => ({}), false), //TODO: replace this to entity.entityId because of conflict wiht entityId model new EntityTableColumn('status', 'event.status', '100%', (entity) => this.updateEdgeEventStatus(entity.createdTime),