You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by Sebastian Bazley <se...@apache.org> on 2016/02/28 23:21:26 UTC

[whimsy.git] [1/1] Commit 4532fbd: Display PGP keys as a list using monospace font

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


Branch: refs/heads/master
Author: Sebb <se...@apache.org>
Committer: Sebb <se...@apache.org>
Pusher: sebb <se...@apache.org>

------------------------------------------------------------
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