diff --git a/app/utils/results.py b/app/utils/results.py index 7b603fb..e04b629 100644 --- a/app/utils/results.py +++ b/app/utils/results.py @@ -178,8 +178,7 @@ def append_nojs(result: BeautifulSoup) -> None: nojs_link = BeautifulSoup(features='html.parser').new_tag('a') nojs_link['href'] = '/window?location=' + result['href'] nojs_link['style'] = 'display:block;width:100%;' - nojs_link.string = 'NoJS Link: ' + nojs_link['href'] - result.append(BeautifulSoup('


', 'html.parser')) + nojs_link.string = 'NoJS Link' result.append(nojs_link)