Rafał Dzięgielewski

Results 242 comments of Rafał Dzięgielewski

This is done for `ViewHelpers` only: https://github.com/SoftwareBrothers/adminjs/blob/master/src/backend/utils/view-helpers/view-helpers.ts#L162 TODO in `ApiClient`

You can use either `data` or `params`: ``` const api = new ApiClient() api.getPage({ pageName: 'xxx', data: { test: 123 }, // visible in request.payload in handler })

@omerabbas01 We've never had to do it, you could try to create your own function imitating: https://github.com/SoftwareBrothers/adminjs/blob/master/src/frontend/layout-template.tsx and serve it manually, although it's just a guess. AdminJS v7 should allow...

Closing because no response from original poster

@Hat52 @krzysztofstudniarek not sure if forking `adminjs-design-system` will be required as it's possible it's already got required UI components. You might have to fork adapter's repositories, e. g. `adminjs-typeorm` so...

``` mkdir adminjs-development cd adminjs-development git clone [email protected]:SoftwareBrothers/adminjs.git cd adminjs yarn install yarn link yarn dev yarn bundle:globals cd .. git clone [email protected]:SoftwareBrothers/adminjs-typeorm.git cd adminjs-typeorm yarn install yarn link yarn...

I can't give an ETA right now but we do plan to extend the documentation, especially by adding and improving current tutorials section. Ideally, it would be something similar to...

Closing because no response from original poster

> If i use npm install -f i get this error: > > ``` > throw Error( "Invalid hook call. Hooks can only be called inside of the body of...

This is the same issue as this: https://github.com/SoftwareBrothers/adminjs/issues/1180#issuecomment-1190293422 Not sure what caused this since we updated those libraries like we'd normally do, it might be some versioning issue on their...