Fix the Task Cloud Filters ordering (#4078)

Navigate on the task details when a row is selected
This commit is contained in:
Maurizio Vitale
2018-12-12 18:27:36 +00:00
committed by GitHub
parent 137584839b
commit bdef2642e7
7 changed files with 64 additions and 7 deletions

View File

@@ -153,8 +153,8 @@ export class TaskFilterCloudService {
appName: appName,
state: 'ASSIGNED',
assignment: username,
sort: 'id',
order: 'ASC'
sort: 'createdDate',
order: 'DESC'
});
}
@@ -171,8 +171,8 @@ export class TaskFilterCloudService {
appName: appName,
state: 'COMPLETED',
assignment: '',
sort: 'id',
order: 'ASC'
sort: 'createdDate',
order: 'DESC'
});
}
}