X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/4aee7d57faff02fc6b7b6f750dc22a29e58bb963..5338c3fe0abbc6599aa290085be13eecfb0044e9:/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 83123b26c3..0a872446d5 100644 --- a/apps/workbench/app/helpers/application_helper.rb +++ b/apps/workbench/app/helpers/application_helper.rb @@ -12,11 +12,11 @@ module ApplicationHelper end def current_api_host - Rails.configuration.arvados_v1_base.gsub(/https?:\/\/|\/arvados\/v1/, '') + "#{Rails.configuration.Services.Controller.ExternalURL.hostname}:#{Rails.configuration.Services.Controller.ExternalURL.port}" end def current_uuid_prefix - current_api_host[0..4] + Rails.configuration.ClusterID end def render_markup(markup) @@ -359,8 +359,8 @@ module ApplicationHelper display_value = link.name elsif value_info[:link_name] display_value = value_info[:link_name] - elsif value_info[:selection_name] - display_value = value_info[:selection_name] + elsif (sn = value_info[:selection_name]) && sn != "" + display_value = sn end end if (attr == :components) and (subattr.size > 2)