mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-4634] Different statuses should load for Tasks than for Processes (#4819)
* Removed 'Suspended' option from Task Status dropdown
This commit is contained in:
@@ -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);
|
||||
});
|
||||
}));
|
||||
|
||||
|
@@ -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' }
|
||||
];
|
||||
|
||||
|
Reference in New Issue
Block a user