Skip to content

Commit

Permalink
resolve eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
alokhyland committed Oct 28, 2024
1 parent c911bee commit 20a079f
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ export default class DocumentPublications extends BasePage {
let index;
for (let i = 0; i < rows.length; i++) {
const row = rows[i];
const isRowVisible = await row.isVisible('nuxeo-data-table-cell a.path')
if (isRowVisible) {
if (row.isVisible('nuxeo-data-table-cell a.path')) {
const foundPathEle = await row.$('nuxeo-data-table-cell a.path');
const foundPath = await foundPathEle.getText();
const foundPathLowerCase = await foundPath.trim().toLowerCase();
Expand Down

0 comments on commit 20a079f

Please sign in to comment.