I've placed add_breadcrumb I18n.t('breadcrumbs.homepage'), :root_path in the base controller, add_breadcrumb I18n.t('breadcrumbs.insurance_companies'), :insurance_companies_path in the child controller (outside any action method) and add_breadcrumb I18n.t('breadcrumbs.search') in the index action, however only the root level was created as a hyperlink. Why?
I've placed
add_breadcrumb I18n.t('breadcrumbs.homepage'), :root_path
in the base controller,add_breadcrumb I18n.t('breadcrumbs.insurance_companies'), :insurance_companies_path
in the child controller (outside any action method) andadd_breadcrumb I18n.t('breadcrumbs.search')
in the index action, however only the root level was created as a hyperlink. Why?