Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Commit

Permalink
Fix string quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
hoffmabc committed May 6, 2020
1 parent b58167a commit ebe5fa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/templates/userPage/categoryFilter.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<%
ob.categories.slice(0, ob.maxInitiallyVisibleCats - 1).forEach((cat, index) => {
valueCat = cat.replace(/&/g, "&amp;");
valueCat = cat.replace(/&/g, '&amp;');
var flatCat = cat.replace(/\s/g, '-'); // remove spaces
%>
<div class="btnRadio">
Expand Down

0 comments on commit ebe5fa2

Please sign in to comment.