This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new 050409a githubUsername is an array
050409a is described below
commit 050409acec617aba4cf9183cd8de7f86990a5a63
Author: Sebb <[email protected]>
AuthorDate: Fri Mar 15 01:55:30 2019 +0000
githubUsername is an array
---
www/roster/views/person/github.js.rb | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/www/roster/views/person/github.js.rb
b/www/roster/views/person/github.js.rb
index 27a9195..08e76ff 100644
--- a/www/roster/views/person/github.js.rb
+++ b/www/roster/views/person/github.js.rb
@@ -20,10 +20,13 @@ class PersonGitHub < Vue
else
- _a committer.githubUsername,
- href: "https://github.com/" + committer.githubUsername
- end
+ _ul committer.githubUsername do |gh|
+ _li do
+ _a gh, href: "https://github.com/" + gh
+ end
+ end
+ end
end
end
end