Skip to content

Commit

Permalink
747032 - Fixed a bugby error in the dashboard whenever you had more t…
Browse files Browse the repository at this point in the history
…han one synced products
  • Loading branch information
parthaa committed Nov 17, 2011
1 parent 1bb04cb commit 3a787e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/helpers/dashboard_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def changeset_path_helper cs
def products_synced
Product.readable(current_organization).reject{|prod|
prod.sync_status.uuid.nil?
}.sort{|a,b| a.start_time <=> b.start_time}[0..10]
}.sort{|a,b| a.sync_status.start_time <=> b.sync_status.start_time}[0..10]
end

def sync_percentage(product)
Expand Down

0 comments on commit 3a787e1

Please sign in to comment.