5365: missed one updated signature update
[arvados.git] / apps / workbench / app / helpers / application_helper.rb
index 0dee527205d3d9eda650680f9cc91588d1112c42..230e0a2755964b7e72720f45d5c65b62091587c8 100644 (file)
@@ -177,7 +177,7 @@ module ApplicationHelper
     end
   end
 
-  def link_to_arvados_object_if_readable(attrvalue, link_text, link_text_if_not_readable, use_friendly_name=false)
+  def link_to_arvados_object_if_readable(attrvalue, link_text_if_not_readable, opts={})
     resource_class = resource_class_for_uuid(attrvalue)
     if !resource_class
       return link_text_if_not_readable
@@ -194,11 +194,7 @@ module ApplicationHelper
     end
 
     if readable
-      if use_friendly_name
-        link_to_if_arvados_object attrvalue, friendly_name: true
-      else
-        link_to_if_arvados_object attrvalue, link_text: link_text
-      end
+      link_to_if_arvados_object attrvalue, opts
     else
       link_text_if_not_readable
     end
@@ -298,7 +294,7 @@ module ApplicationHelper
     end
 
     if not object.andand.attribute_editable?(attr)
-      return link_to_arvados_object_if_readable(attrvalue, attrvalue, attrvalue, false)
+      return link_to_arvados_object_if_readable(attrvalue, attrvalue)
     end
 
     if dataclass