[ADF-4634] Different statuses should load for Tasks than for Processes (#4819)

* Removed 'Suspended' option from Task Status dropdown
This commit is contained in:
mcchrys
2019-06-11 04:43:52 +05:30
committed by Eugenio Romano
parent cb37254cae
commit be35267df3
2 changed files with 1 additions and 2 deletions

View File

@@ -190,7 +190,7 @@ describe('EditTaskFilterCloudComponent', () => {
fixture.detectChanges();
fixture.whenStable().then(() => {
const statusOptions = fixture.debugElement.queryAll(By.css('.mat-option-text'));
expect(statusOptions.length).toEqual(6);
expect(statusOptions.length).toEqual(5);
});
}));

View File

@@ -93,7 +93,6 @@ export class EditTaskFilterCloudComponent implements OnInit, OnChanges {
{ label: 'CREATED', value: 'CREATED' },
{ label: 'CANCELLED', value: 'CANCELLED' },
{ label: 'ASSIGNED', value: 'ASSIGNED' },
{ label: 'SUSPENDED', value: 'SUSPENDED' },
{ label: 'COMPLETED', value: 'COMPLETED' }
];