Skip to content

Commit

Permalink
Fixes #74
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus committed Feb 22, 2020
1 parent 38dd4e7 commit 19d4732
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/misc/RepositoryAuthors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@ export class Authors extends LitElement {
protected render(): TemplateResult | void {
if (String(this.authors.length) === "0") return html``;
let authors = [];
const seperateElement = document.createElement("div");
seperateElement.className = "seperator";
seperateElement.innerText = ",";
this.authors.forEach(author => {
const seperateElement = document.createElement("div");
seperateElement.className = "seperator";
seperateElement.innerText = ",";

const authorElement = document.createElement("a");
authorElement.href = `https://github.com/${author.replace("@", "")}`;
authorElement.target = "_blank";
Expand Down

0 comments on commit 19d4732

Please sign in to comment.