Skip to content

Commit 98c41f2

Browse files
committed
MAGETWO-94226: Catalog Products, Orders, All Customer page doesnt load (Continuous spinner) on cloud starter
1 parent 5084541 commit 98c41f2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lib/web/mage/requirejs/resolver.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,11 @@ define([
3434
* @return {Boolean}
3535
*/
3636
function isRegistered(module) {
37-
return registry[module.id];
37+
if (registry.hasOwnProperty(module.id)) {
38+
return registry[module.id].inited || registry[module.id].error;
39+
}
40+
41+
return false;
3842
}
3943

4044
/**

0 commit comments

Comments
 (0)