X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/78e0599b0773976167ccb720fc1596236295337a..9daf42fbdb868939653c6e3ca8a4fffd1cf94e31:/apps/workbench/app/helpers/application_helper.rb diff --git a/apps/workbench/app/helpers/application_helper.rb b/apps/workbench/app/helpers/application_helper.rb index 420ffbaf11..b145fddcc9 100644 --- a/apps/workbench/app/helpers/application_helper.rb +++ b/apps/workbench/app/helpers/application_helper.rb @@ -177,15 +177,15 @@ module ApplicationHelper end end - def link_to_arvados_object_if_readable(attrvalue, link_text, link_text_if_not_readable, use_friendly_name=false, resource_class=nil) - resource_class = resource_class_for_uuid(attrvalue) if !resource_class + def link_to_arvados_object_if_readable(attrvalue, link_text, link_text_if_not_readable, use_friendly_name=false) + resource_class = resource_class_for_uuid(attrvalue) if !resource_class return link_text_if_not_readable end - if resource_class.andand.to_s == 'Collection' + if resource_class.to_s == 'Collection' if CollectionsHelper.match(attrvalue) - readable = Collection.find? attrvalue + readable = collection_for_pdh(attrvalue).any? else readable = collections_for_object(attrvalue).any? end