This very same project is working without problems on activeadmin_addons=1.7.1. You can test this by changing the version of this gem on the Gemfile and re-running bundler and rails server.
Comments
I've tried other types of inputs and got no problems. I only had issues with the type :select.
The Problem
I've got an error message during the definition of a form with a
:select
input, after bumping toactiveadmin_addons 1.8.2
.I put together a sample project (a really really lightweight and incomplete rails project) where you can replicate this error.
The Code
You can find the page definition here and the form definition here.
Replication
To replicate the problem just clone the repo and execute the following commands
Once the server is running, just open a browser and head to http://localhost:3000/admin/test Credentials:
You will be welcome by this error
This very same project is working without problems on
activeadmin_addons=1.7.1
. You can test this by changing the version of this gem on theGemfile
and re-running bundler and rails server.Comments
I've tried other types of inputs and got no problems. I only had issues with the type
:select
.