I have two PGP keys which display concatenated. I think the following patch will fix it, but cannot test it:
diff --git a/www/roster/views/committer.js.rb b/www/roster/views/committer.js.rb
index 93ac1af..27856d2 100644
--- a/www/roster/views/committer.js.rb
+++ b/www/roster/views/committer.js.rb
@@ -104,8 +104,12 @@
if @committer.pgp
_tr do
- _td 'PGP key'
- _td @committer.pgp
+ _td 'PGP keys'
+ _td do
+ _ul @committer.pgp do |key|
+ _li {key}
+ end
+ end
end
end
