Skip to content
Snippets Groups Projects
Commit fef6f59c authored by paf's avatar paf
Browse files

FIX filter for inactive testees

parent 80feb96a
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ export class GroupMonitorComponent implements OnInit, OnDestroy { ...@@ -43,7 +43,7 @@ export class GroupMonitorComponent implements OnInit, OnDestroy {
}; };
filterOptions: {label: string, filter: TestSessionFilter, selected: boolean}[] = [ filterOptions: {label: string, filter: TestSessionFilter, selected: boolean}[] = [
{ {
label: 'beendete', label: 'gesperrte',
selected: false, selected: false,
filter: { filter: {
type: 'testState', type: 'testState',
...@@ -52,12 +52,12 @@ export class GroupMonitorComponent implements OnInit, OnDestroy { ...@@ -52,12 +52,12 @@ export class GroupMonitorComponent implements OnInit, OnDestroy {
} }
}, },
{ {
label: 'nicht gestartete', label: 'nicht aktive',
selected: false, selected: false,
filter: { filter: {
type: 'testState', type: 'testState',
value: 'status', value: 'CONTROLLER',
subValue: 'running', subValue: 'RUNNING',
not: true not: true
} }
}, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment