Skip to content

Commit

Permalink
fix(basic.gblib): Return the last information with getTextOf
Browse files Browse the repository at this point in the history
  • Loading branch information
phpussente committed May 15, 2023
1 parent a03a7c7 commit ececb0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/basic.gblib/services/WebAutomationServices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ export class WebAutomationServices {
(ul) => {
let items = "";
for (let i = 0; i < ul.children.length; i++) {
items = `${items}${ul.children[i].textContent}\n`;
items = `${ul.children[i].textContent}\n`;
}
return items;
}
Expand Down

0 comments on commit ececb0d

Please sign in to comment.