Skip to content

Commit

Permalink
fix: Adds missing double quote to the href attribute (#6573)
Browse files Browse the repository at this point in the history
  • Loading branch information
aquilax authored Apr 7, 2022
1 parent 4298ff5 commit d875e06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion html/js/product-search.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ function display_products(target, product_groups, user_prefs ) {
if (user_prefs.use_ranking) {
css_classes += ' list_product_a_match_' + product.match_status;
}
product_html += `<li><a href=${product.url}" class="${css_classes}">`;
product_html += `<li><a href="${product.url}" class="${css_classes}">`;
product_html += '<div class="list_product_img_div">';

const img_src =
Expand Down

0 comments on commit d875e06

Please sign in to comment.