Skip to content

Commit 375b129

Browse files
authored
#28117 RequireJS resolver sometimes fails to detect blocked resources
Fix static tests
1 parent 8602bef commit 375b129

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/web/mage/requirejs/resolver.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ define([
5959
}
6060

6161
return module.depCount >
62-
(_.filter(module.depMaps, isRejected).length + _.filter(module.depMaps, isPathFallback).length);
62+
_.filter(module.depMaps, isRejected).length + _.filter(module.depMaps, isPathFallback).length;
6363
}
6464

6565
/**

0 commit comments

Comments
 (0)