Skip to content

Commit

Permalink
fixed attributes of the script tag
Browse files Browse the repository at this point in the history
  • Loading branch information
SahRckr committed Aug 17, 2020
1 parent f6f0b5a commit 8eeeab8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/theme/BlogPostPage/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ function BlogPostPage(props) {
const script = document.createElement("script");

script.src = "https://utteranc.es/client.js";
script.setAttribute("repo", "KohheePeace/coderhackers");
script.setAttribute("issue-term", "pathname");
script.setAttribute("label", "comment");
script.setAttribute("theme", "github-light");
script.setAttribute("repo", "sahrckr/profile");
script.setAttribute("issue-term", "url");
script.setAttribute("label", "blog-post-comment");
script.setAttribute("theme", "preferred-color-scheme");
script.crossOrigin = "anonymous";
script.async = true;

Expand Down

0 comments on commit 8eeeab8

Please sign in to comment.