mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[AAE-726] Add new return await rule (#5203)
* add new return await rule * update tslint * add lint exception
This commit is contained in:
committed by
Denys Vuika
parent
a4730cd9cf
commit
2e046945c7
@@ -141,11 +141,11 @@ export class TasksPage {
|
||||
}
|
||||
|
||||
async clickSortByNameAsc(): Promise<any> {
|
||||
return await this.tasksListPage().getDataTable().sortByColumn('ASC', 'name');
|
||||
return this.tasksListPage().getDataTable().sortByColumn('ASC', 'name');
|
||||
}
|
||||
|
||||
async clickSortByNameDesc(): Promise<any> {
|
||||
return await this.tasksListPage().getDataTable().sortByColumn('DESC', 'name');
|
||||
return this.tasksListPage().getDataTable().sortByColumn('DESC', 'name');
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user