Lee Morgan 5 년 전
부모
커밋
2b25342bc0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      views/main/index.html

+ 1 - 1
views/main/index.html

@@ -260,7 +260,7 @@
                             let tag = document.createElement("button");
                             tag.innerText = response[i].tags[j];
                             tag.classList.add("tag");
-                            tag.onclick = ()=>{populateBlogs(searchTags(response, response[i].tags[j]))};
+                            tag.onclick = ()=>{populateBlogs(searchTags(response, response[i].tags[j].toLowerCase()))};
                             tagContainer.appendChild(tag);
                         }
                     }