Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ActiveAdmin error uninitialized constant ActiveAdmin::Dashboards

ActiveAdmin dashboard is no longer working after upgrading to 0.6.1. The dashboard now returns the error:

  /app/app/admin/dashboards.rb:1:in `<top (required)>': uninitialized constant ActiveAdmin::Dashboards (NameError) 

Update SOLVED:

The dashboard has been removed from ActiveAdmin 0.6.1. To continue using the dashboard, force version 0.6.0 in your application's Gemfile:

 gem "activeadmin", "0.6.0"
like image 523
jimagic Avatar asked Oct 20 '22 23:10

jimagic


1 Answers

ActiveAdmin::Dashboards has been removed on 0.6.1. Make sure bundler is not installing that version.

like image 94
Machine Avatar answered Oct 25 '22 20:10

Machine