2872: Hide unnecessary scroll bar
[arvados.git] / apps / workbench / app / controllers / application_controller.rb
index d410da9326bd38f1309b0246f5e5d619013bf4e0..12f9c70c1ac011b356d7a5cc4337bd6b0d01a8df 100644 (file)
@@ -529,7 +529,9 @@ class ApplicationController < ActionController::Base
 
   helper_method :recent_jobs_and_pipelines
   def recent_jobs_and_pipelines
-    (Job.limit(10) | PipelineInstance.limit(10)).
+    in_my_folders = ['owner_uuid','in',my_folders.collect(&:uuid)]
+    (Job.limit(10).filter([in_my_folders]) |
+     PipelineInstance.limit(10).filter([in_my_folders])).
       sort_by do |x|
       x.finished_at || x.started_at || x.created_at rescue x.created_at
     end