From 6897454a7b9cb3f46a349e062ef29afeafe404d0 Mon Sep 17 00:00:00 2001 From: jrtechs Date: Thu, 12 Dec 2019 20:04:35 -0500 Subject: [PATCH] Fixed link of orgs to redirect to the internal websites organization view rather than the orgs github. --- public/js/profileGen.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/js/profileGen.js b/public/js/profileGen.js index fcdfb18..e8119a4 100644 --- a/public/js/profileGen.js +++ b/public/js/profileGen.js @@ -66,7 +66,8 @@ function parseOrgs(name) { prom.push( new Promise( (res, rej) => { url = orgs[i].url; queryUrl(url, (orgData) => { - orgs_final.push(""); + console.log(orgData); + orgs_final.push(""); res(); }, (error) => { console.log(error);