Skip to content

Commit

Permalink
Fix double escaping of ampersands in URLs in execution log
Browse files Browse the repository at this point in the history
Closes #148
  • Loading branch information
balhoff authored Oct 17, 2023
1 parent ed9e5b2 commit d7a99ea
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/ldf-client-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -1051,7 +1051,6 @@ if (typeof global.process === 'undefined')
return lt && '<' || gt && '>' || amp && '&';
}
function escapeMatchUrl(match, preUrl, url) {
url = escape(url);
return preUrl + '<a href="' + url + '" target=_blank>' + url + '</a>';
}

Expand Down

0 comments on commit d7a99ea

Please sign in to comment.