administrate-field-jsonb icon indicating copy to clipboard operation
administrate-field-jsonb copied to clipboard

A plugin to show and edit JSON objects within Administrate.

Results 16 administrate-field-jsonb issues
Sort by recently updated
recently updated
newest added

I have a `Post` which has_many `Post::Translation`s, which themselves have a JSON `tags` property. When creating the post with its nested resource(s), the tag editor does not appear (http://localhost:3000/admin/posts/new): However...

Handle being loaded via Turbo. Currently in my app, the editor doubles every time the page is loaded via Turbo. This prevents that situation and doesn't seem to have any...

Hi guys, This code in the model would throw the error bellow: ` def phone=(value) self[:phone] = value.is_a?(String) ? JSON.parse(value) : value end` Whereas this one would work: > before_save...

My jsonb column default is `[]`, yet when the JSON editor loads it shows this: This fails when saving, it should look like this by default: example of DB data:

Hey, i was wondering if you could add support for Field::Select in advanced view likeso: ``` image_details: Field::JSONB.with_options(advanced_view: { 'width' => Field::Select.with_options(collection: ['half', 'full']), }), ```