Rafał Dzięgielewski

Results 242 comments of Rafał Dzięgielewski

Closing because no description on what needs to be done

@edwardstumpf has recently done some improvements to error handling (v5.11.0 or higher), could you try to throw an `Error` that has `baseMessage` field in it's object and see if it...

@AshotN I added a new error type: `AppError` https://github.com/SoftwareBrothers/adminjs/pull/1232 Let me know if this is enough

When you start up the server, it should say something like: ``` ✔ Finish bundling: 22 files ``` How many components is it in your case?

It should appear if you add: ``` if (process.env.NODE_ENV !== 'production') adminJs.watch() ``` somewhere after you instantiate AdminJS

I'm not a fan of `@adminjs/upload` personally since it's useful for basic usage mostly where you only need to upload small files. I usually create my own upload tool based...

The final SQL query is generated by Sequelize, our adapters only convert AdminJS filters to a given ORM syntax. I've just checked on MySQL and Postgres database since we have...

Have you tried defining properties in resource options? ``` properties: { translations: { type: 'mixed' }, 'translations.content': { type: 'richtext' } } ``` just tested and it works for me

I'm leaving this open but it should be fixed in AdminJS v6/Design System v3 since we're switching from Quill to TipTap

Have you tried temporarily removing your custom code from your `Wrapper` component and just returning a raw `New` component to see if it works at all? I'd also try to...