Skip to content

Commit 8bc8d8e

Browse files
committed
[FIX] assets/js/main.js
minor typo which was causing same content to be shown twice
1 parent 0165353 commit 8bc8d8e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

assets/js/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ function fetchTeam(force = false) {
150150

151151
function updateTeam(data) {
152152
let container = $("#team").find(".card-content");
153-
container.html();
153+
container.html("");
154154
data.forEach(function(i) {
155155
let anchor = createElement("a", {href: i.html_url, target: "_blank"});
156156
anchor.append(createElement("img", {class: "circle team-img tooltipped", src: i.avatar_url, "data-tooltip": i.login}));

0 commit comments

Comments
 (0)