I'm using breadcrumbs_on_rails and Friendly ID in one of my projects.
def show
@section = Section.friendly.find(params[:id])
add_breadcrumb 'Introduction', section_path(@section)
end
This doesn't return an active link in the html, just plain text. Is there a workaround for this or am I just doing something wrong?
Just wondering if anyone had encountered this issue before