X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/1e2e0e4f14a730ba1bbea6a4ced5d87ea2766c35..29efe0926dde0ee85387846f31062f4c680cb49c:/apps/workbench/app/models/collection.rb diff --git a/apps/workbench/app/models/collection.rb b/apps/workbench/app/models/collection.rb index 1bd711be64..13f5357faa 100644 --- a/apps/workbench/app/models/collection.rb +++ b/apps/workbench/app/models/collection.rb @@ -35,7 +35,11 @@ class Collection < ArvadosBase end def content_summary - ApplicationController.helpers.human_readable_bytes_html(total_bytes) + " " + super + if total_bytes > 0 + ApplicationController.helpers.human_readable_bytes_html(total_bytes) + " " + super + else + super + " modified at " + modified_at.to_s + end end def total_bytes