We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when i make multiple layout like this
const MainLayoutCtx = injectDeps(context, actions)(MainLayout); const OrgChartLayoutCtx = injectDeps(context, actions)(OrgChartLayout);
the method within actions will have tow context parameters like this
actions: { posts: { create(context, context, title, comment) { // the second parameter also context ! } } }
if i call injectDeps three times, it will be three context injected
actions: { posts: { create(context, context, context, title, comment) { // the second and third parameter also context ! } } }
The text was updated successfully, but these errors were encountered:
Good one. I'll work on this.
Sorry, something went wrong.
Fix issue #2
38a60fd
Check now. I updated a new version with a fix.
Awesome!
Brilliant! I had exactly this issue, came here, saw you'd reported it and that genius @arunoda's fixed it. Thanks guys!
No branches or pull requests
when i make multiple layout like this
the method within actions will have tow context parameters like this
if i call injectDeps three times, it will be three context injected
The text was updated successfully, but these errors were encountered: