3193: add wrapping to td elements
[arvados.git] / apps / workbench / app / views / users / _manage_ssh_keys.html.erb
index f8eec71666d08b1f17eb29a5a06527a63812e8e6..2c6c7dd8b6959ad5503b8143632dfabad1ce97d8 100644 (file)
@@ -8,13 +8,13 @@
     <tbody>
       <% @my_ssh_keys.andand.each do |key| %>
         <tr>
-          <td>
-            <%= key[:uuid] %>
+          <td style="word-break:break-all;">
+            <%= key[:public_key] %>
           </td>
           <td>
-    <%= link_to(authorized_key_path(id: key[:uuid]), method: 'delete', class: 'btn btn-sm', data: {confirm: "Really delete key"}) do %>
-      <i class="fa fa-fw fa-trash-o"></i>
-    <% end %>
+            <%= link_to(authorized_key_path(id: key[:uuid]), method: 'delete', class: 'btn btn-sm', data: {confirm: "Really delete key"}) do %>
+                <i class="fa fa-fw fa-trash-o"></i>
+            <% end %>
           </td>
         </tr>
       <% end %>