-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Module Manager grid is not working Magento 2.2.5 #16439
New issue
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
Comments
Hi @VZeroCool. Thank you for your report.
Please make sure that the issue is reproducible on the vanilla Magento instance following Steps to reproduce. To deploy vanilla Magento instance on our environment, please, add a comment to the issue:
where @VZeroCool do you confirm that you was able to reproduce the issue on vanilla Magento instance following steps to reproduce?
|
@magento-engcom-team give me 2.2.5 instance |
Hi @VZeroCool. Thank you for your request. I'm working on Magento 2.2.5 instance for you |
Hi @VZeroCool, here is your Magento instance. |
@magento-engcom-team, Encounters new problem Can't able to navigate to |
@magento-engcom-team, I would like to work on this issue. #mm18in |
Just a question: Javascript error angular.js? Is this normal or is knockout being replaced by angular? (which i would totally like) |
@johnny-longneck Its angular.js error I think.. |
@VZeroCool : this was already reported for Magento 2.2.4 and was already fixed in #15211, it was badly communicated and was not fixed in 2.2.5, but should be fixed in 2.2.6 |
I can confirm that the same fix if applied into Magento 2.2.5 it will work. Thanks to all community member about that. |
Have this issue on 2.3.3, cant find a solution |
Preconditions
Steps to reproduce
Expected result
Actual result
Workaround
setup\src\Magento\Setup\Model\Grid\Module.php
private function addGeneralInfo(array $items)
$item['moduleName'] = $item['moduleName'] ?: $this->packageInfo->getModuleName($item['name']);
To
$item['moduleName'] = $item['moduleName'] ?? $this->packageInfo->getModuleName($item['name']);
The text was updated successfully, but these errors were encountered: