I'm trying to upgrade from Rails 6.0 to 6.1 and suddenly I'm getting this error that seems related to crummy, though I can't figure out what's wrong:
ActionView::Template::Error (can't modify frozen Hash):
1: <%= render_crumbs :last_crumb_linked => false, :format => :html_list, :ul_class => 'breadcrumb', :last_class => 'active' %>
app/views/layouts/_breadcrumbs.html.erb:1
app/views/articles/edit.html.erb:2
If I comment out the render_crumbs call in my template then the error goes away.
Ideas?
I'm trying to upgrade from Rails 6.0 to 6.1 and suddenly I'm getting this error that seems related to crummy, though I can't figure out what's wrong:
If I comment out the
render_crumbscall in my template then the error goes away.Ideas?