Github user merrimanr commented on a diff in the pull request:
https://github.com/apache/metron/pull/1010#discussion_r189065371
--- Diff:
metron-interface/metron-alerts/src/app/alerts/alerts-list/alerts-list.component.ts
---
@@ -174,6 +177,13 @@ export class AlertsListComponent implements OnInit,
OnDestroy {
}
ngOnInit() {
+ this.globalConfigService.get().subscribe((config: {}) => {
+ this.globalConfig = config;
+ if (this.globalConfig['source.type.field'] === 'source.type' &&
!this.alertsColumns['source.type']) {
--- End diff --
Same as https://github.com/apache/metron/pull/1010/files#r189060226
---