ad-freiburg / qlever-ui

A user interface for QLever
Apache License 2.0
21 stars 15 forks source link

Fix bug when showing links in the result table #65

Closed greenBene closed 10 months ago

greenBene commented 11 months ago

In the file backernd/static/js/helper.js the line link = cpy.match(/(https?:\/\/[a-zA-Z0-9.:%/#\?_-]+)/g)[0]; led to issues with results of the encode_for_uri function (see https://github.com/ad-freiburg/qlever/pull/1128), because of a missing check if the .match() function actually finds any result.

greenBene commented 11 months ago

See PR https://github.com/ad-freiburg/qlever/pull/1128