diff --git a/CHANGELOG.md b/CHANGELOG.md index 632b3317b..fd9341ece 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). It uses [CalVer](https://calver.org/) as of May 2019. +## [22.09b](https://github.com/berkmancenter/lumendatabase/releases/tag/2022.09b) - 2022-09-13 +### Fixed +* Set the proper type for `jsonb` fields to correctly render in the `admin`. + ## [22.09a](https://github.com/berkmancenter/lumendatabase/releases/tag/2022.09a) - 2022-09-05 ### Fixed * Fixed duplicates of `special domains` when showing the full notice version. diff --git a/config/initializers/rails_admin.rb b/config/initializers/rails_admin.rb index 431114de6..f9da6dcdf 100644 --- a/config/initializers/rails_admin.rb +++ b/config/initializers/rails_admin.rb @@ -464,6 +464,18 @@ def custom_work_label end end + config.model 'ContentFilter' do + configure :actions, :enum do + multiple true + end + end + + config.model 'SpecialDomain' do + configure :why_special, :enum do + multiple true + end + end + # Hide unused models from the admin # == START ============================================================ config.model 'ReindexRun' do