Commit 4532fbd7a7fb963331818b9bfc49d04229c8c9f2:
    Display PGP keys as a list using monospace font


Branch: refs/heads/master
Author: Sebb <[email protected]>
Committer: Sebb <[email protected]>
Pusher: sebb <[email protected]>

------------------------------------------------------------
www/roster/views/committer.js.rb                             | ++++++ --
------------------------------------------------------------
8 changes: 6 additions, 2 deletions.
------------------------------------------------------------


diff --git a/www/roster/views/committer.js.rb b/www/roster/views/committer.js.rb
index 93ac1af..12b6e10 100644
--- a/www/roster/views/committer.js.rb
+++ b/www/roster/views/committer.js.rb
@@ -104,8 +104,12 @@ def render
 
       if @committer.pgp
         _tr do
-          _td 'PGP key'
-          _td @committer.pgp
+          _td 'PGP keys'
+          _td do
+            _ul @committer.pgp do |key|
+            _li {_samp key}
+            end
+          end
         end
       end
 

Reply via email to