Rafał Dzięgielewski
Rafał Dzięgielewski
This might be caused by our other dependencies, I'm currently working on upgrading them.
Please try to update Hapi plugin to 6.0.2; I'll reopen if it doesn't work.
You can do it via a custom component: ``` import React from 'react' const ClickableLink = (props) => { const { record, property } = props const { custom =...
Can you try: ``` const adminJsOptions = { resources: [{ resource: Thematic, options: { properties: { 'subthematics._id': { type: 'string' }, } } }] }; ``` It looks like it...
You can also try to additionally add: ``` subthematics: { type: 'mixed', isArray: true } ``` it's difficult to say why this happens. `@adminjs/mongoose` is the only adapter which is...
You can also set 2nd argument when using `AdminJS.bundle`. It's typed as `OverridableComponent` but you can cast it's type to `any` and just put a string name there. It will...
Technically `@adminjs/bundler` should work fine as long as you import all files that use `AdminJS.bundle` inside of them. This is unless they are inside of functions/classes that require to be...
Can you show what `console.log(val)` logs in `validate`? The payload should be converted to correct types before saving. Alternatively, in case types cannot be determined correctly based on mongoose schema...
`fetchData` reads these from search params so you can achieve this by setting `perPage`, etc in your browser's address bar. We could technically allow to pass custom options though.
The ApiClient approach has to stay in case the content is supposed to stay dynamic. We can consider pre-fetching the data for initial rendering though.