From 21bdfa8c99db4c7dcafc2e8f09a0629c81acd56d Mon Sep 17 00:00:00 2001 From: The-GeoStack-Project Date: Wed, 13 May 2020 14:40:00 +0200 Subject: [PATCH] Fixed add extra user info --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 284df89..fe457ef 100644 --- a/README.md +++ b/README.md @@ -343,7 +343,7 @@ $(document).ready(function () { $("#issues") .append("" + issue.number + " - " + issue.title + "
") .append("created at: " + issue.created_at + "
") - .append("created by: " + issue.user.login + "
") + .append("created by: " + issue.user.login + "
") .append(issue.body + "


"); }); });