Rafał Dzięgielewski
Rafał Dzięgielewski
Could you share your tsconfig if it's a Typescript app?
Do you use Babel or any other JS compiler? Could you try to import everything from `adminjs` and show the log output? ```js import * as AdminJSModule from 'adminjs' console.log(AdminJSModule)...
> Seems like changing it to return this.MongooseModel.countDocuments(convertFilter(filters)) fixes the issue. We've tried that before and `countDocuments(convertFilter(filters))` actually returned wrong counts above resource's list of records, that's why we reverted...
For resources you can define `isAccessible` in `list` action to hide them from the sidebar. For pages, you can override `SidebarPages` component and filter out pages based on `currentAdmin` (`const...
We currently use TipTap for Rich Text Editor. TipTap only provides API for building the editor, while the UI is something we have to do on our end that's why...
Are there any errors appearing in the server's console besides the Axios error in the browser's console? > A workaround in Postman was to pass id in the body as...
> I have noticed that in network tab when creating new item it's sending options as empty array, but if I console.log actions new before paylod the data is there:...
In the video you're showing a `Response` (not `Request`) which only means that `options` are not returned from the server. So my guess is that they're actually sent from the...
This function could be messing up the payload: https://github.com/SoftwareBrothers/adminjs-mongoose/blob/master/src/resource.ts#L181 I'm not sure why it's even needed for Mongoose though. Could you try to modify this function in your: ``` node_modules/@adminjs/mongoose/lib/resource.js...
This is something that has to be done on each adapter's level. Currently only `@adminjs/sql` supports case-insensitive search. This is problematic because not all databases support `ILIKE` which adds an...