[ACS-180] Add Description column to My libraries / Favorites (#1486)

* [ACS-180] Add Description column to My libraries / Favorites

* Fix e2e test

* Fix datatable selector

* Fix role and visibility selectors

* Add description to search library layout

* Final fix
This commit is contained in:
davidcanonieto
2020-06-16 14:54:26 +01:00
committed by GitHub
parent 7130a5c15c
commit 03b75a5fb3
7 changed files with 83 additions and 12 deletions

View File

@@ -438,7 +438,7 @@ export class DataTable extends Component {
async getSitesNameAndVisibility(): Promise<{}> {
const data = await this.getEntireDataTableText();
return data.reduce((acc, cell) => {
acc[cell[1]] = cell[3].toUpperCase();
acc[cell[1]] = cell[4].toUpperCase();
return acc;
}, {});
}
@@ -446,7 +446,7 @@ export class DataTable extends Component {
async getSitesNameAndRole(): Promise<{}> {
const data = await this.getEntireDataTableText();
return data.reduce((acc, cell) => {
acc[cell[1]] = cell[2];
acc[cell[1]] = cell[3];
return acc;
}, {});
}