3627: More consistent icons/headings in projects dropdown and chooser.
authorTom Clegg <tom@curoverse.com>
Sun, 24 Aug 2014 20:11:00 +0000 (16:11 -0400)
committerTom Clegg <tom@curoverse.com>
Sun, 24 Aug 2014 20:11:00 +0000 (16:11 -0400)
apps/workbench/app/controllers/application_controller.rb
apps/workbench/app/views/projects/_choose.html.erb

index 5c99c15abc62544f79c4bca6f148da051f8e59a8..4463260a5d8c90b61697d8be952f5476a6057553 100644 (file)
@@ -730,7 +730,7 @@ class ApplicationController < ActionController::Base
     @my_project_tree =
       sorted_paths.call buildtree.call(children_of, 'me')
     @shared_project_tree =
-      sorted_paths.call({'Shared with me' =>
+      sorted_paths.call({'Projects shared with me' =>
                           buildtree.call(children_of, false)})
   end
 
index e5bd9e9d3eaaf98cf0df93dfe6762831cba4ae84..d4b12a2f50e642a9bc8c4b29cae5fc0b95e6f685 100644 (file)
@@ -17,7 +17,7 @@
             <% tree.each do |projectnode| %>
               <% if projectnode[:object].is_a? String %>
                 <div class="row" style="padding-left: <%= 1 + projectnode[:depth] %>em; margin-right: 0px">
-                  <i class="fa fa-fw fa-folder-open-o"></i>
+                  <i class="fa fa-fw fa-share-alt"></i>
                   <%= projectnode[:object] %>
                 </div>
               <% else